| Server IP : 145.239.37.162 / Your IP : 216.73.217.126 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www_old/wp-content/themes/betheme/muffin-options/fields/ajax/ |
Upload File : |
<?php
class MFN_Options_ajax extends MFN_Options
{
protected $field = array();
protected $value = '';
protected $prefix = false;
/**
* Constructor
*/
public function __construct($field = array(), $value = '', $prefix = false)
{
$this->field = $field;
$this->value = $value;
$this->prefix = $prefix;
$this->enqueue();
}
/**
* Render
*/
public function render($meta = false)
{
$action = isset($this->field['action']) ? $this->field['action'] : '';
$param = isset($this->field['param']) ? $this->field['param'] : '';
echo '<a href="javascript:void(0);" class="btn-blue mfn-opts-ajax" data-ajax="'. esc_url(admin_url('admin-ajax.php')) .'" data-action="'. esc_attr($action) .'" data-param="'. esc_attr($param) .'">'. esc_html__('Randomize', 'mfn-opts') .'</a>';
if (isset($this->field['desc'])) {
echo '<span class="description">'. wp_kses($this->field['desc'], mfn_allowed_html('desc')) .'</span>';
}
}
/**
* Enqueue
*/
public function enqueue()
{
wp_enqueue_script('mfn-opts-field-ajax', MFN_OPTIONS_URI .'fields/ajax/field_ajax.js', array('jquery'), MFN_THEME_VERSION, true);
}
}