| Server IP : 118.139.160.155 / Your IP : 216.73.217.153 Web Server : Apache System : Linux sg2plmcpnl504228.prod.sin2.secureserver.net 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64 User : twll3xqyaqrh ( 9725459) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/twll3xqyaqrh/public_html/Site WP/wp-content/plugins/meta-box/inc/fields/ |
Upload File : |
<?php
/**
* The file upload field which allows users to drag and drop files to upload.
*
* @package Meta Box
*/
/**
* The file upload field class.
*/
class RWMB_File_Upload_Field extends RWMB_Media_Field {
/**
* Enqueue scripts and styles.
*/
public static function admin_enqueue_scripts() {
parent::admin_enqueue_scripts();
wp_enqueue_style( 'rwmb-upload', RWMB_CSS_URL . 'upload.css', array( 'rwmb-media' ), RWMB_VER );
wp_enqueue_script( 'rwmb-file-upload', RWMB_JS_URL . 'file-upload.js', array( 'rwmb-media' ), RWMB_VER, true );
}
/**
* Normalize parameters for field.
*
* @param array $field Field parameters.
*
* @return array
*/
public static function normalize( $field ) {
$field = parent::normalize( $field );
$field = wp_parse_args(
$field,
array(
'max_file_size' => 0,
)
);
$field['js_options'] = wp_parse_args(
$field['js_options'],
array(
'maxFileSize' => $field['max_file_size'],
)
);
return $field;
}
/**
* Template for media item.
*/
public static function print_templates() {
parent::print_templates();
require_once RWMB_INC_DIR . 'templates/upload.php';
}
}