field = $field;
$this->value = $value;
$this->args = $parent->args;
$this->url = $parent->url;
}
/**
* Field Render Function.
*
* Takes the vars and outputs the HTML for the field in the settings
*
* @since Vision_Options 1.0.0
*/
function render() {
$class = (isset($this->field['class'])) ? $this->field['class'] : 'regular-text';
echo '';
echo '
';
if($this->value == '') {$remove = ' style="display:none;"'; $upload = ''; } else {$remove = ''; $upload = ' style="display:none;"'; }
echo ' ' . __('Upload', Vision_TEXT_DOMAIN) . '';
echo ' ' . __('Remove Upload', Vision_TEXT_DOMAIN) . '';
echo (isset($this->field['desc']) && !empty($this->field['desc'])) ? '
' . $this->field['desc'] . '' : '';
}
/**
* Enqueue Function.
*
* If this field requires any scripts, or css define this function and register/enqueue the scripts/css
*
* @since Vision_Options 1.0.0
*/
function enqueue() {
// global $wp_version; //AP: why doesn't this work?!?!
$wp_version = floatval(get_bloginfo('version'));
if ( $wp_version < "3.5" ) {
wp_enqueue_script(
'vision-opts-field-upload-js',
Vision_OPTIONS_URL . 'fields/upload/field_upload_3_4.js',
array('jquery', 'thickbox', 'media-upload'),
time(),
true
);
wp_enqueue_style('thickbox');// thanks to https://github.com/rzepak
} else {
wp_enqueue_script(
'vision-opts-field-upload-js',
Vision_OPTIONS_URL . 'fields/upload/field_upload.js',
array('jquery'),
time(),
true
);
wp_enqueue_media();
}
wp_localize_script('vision-opts-field-upload-js', 'vision_upload', array('url' => $this->url.'fields/upload/blank.png'));
}
}