'setting_id', // Unique id * 'title' => 'My Setting', // Title or label for the setting * 'description' => 'Description', // Help text description * ); * * @since 2.5 * @package Simple Admin Pages */ class sapAdminPageSettingFileUpload_2_7_4 extends sapAdminPageSetting_2_7_4 { public $sanitize_callback = 'esc_url_raw'; /** * Add in the JS requried to allow file uploading * @since 2.5 */ public $scripts = array( 'sap-file-upload' => array( 'path' => 'js/file_upload.js', 'dependencies' => array( 'jquery' ), 'version' => SAP_VERSION, 'footer' => true, ), ); /** * Display this setting * @since 2.5 */ public function display_setting() { ?>
print_conditional_data(); ?>> value ); ?> value != '' ? '

' : '' ); ?>


display_disabled(); ?> display_description(); } }