| Server IP : 145.239.37.162 / Your IP : 216.73.217.174 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/www1/wp-content/plugins/transpix-common/meta-box/inc/fields/ |
Upload File : |
<?php
/**
* The date picker field, which uses built-in jQueryUI date picker widget.
*
* @package Meta Box
*/
/**
* Date field class.
*/
class RWMB_Date_Field extends RWMB_Datetime_Field {
/**
* Enqueue scripts and styles.
*/
public static function admin_enqueue_scripts() {
parent::admin_register_scripts();
wp_enqueue_style( 'rwmb-date' );
wp_enqueue_script( 'rwmb-date' );
}
/**
* Returns a date() compatible format string from the JavaScript format.
*
* @link http://www.php.net/manual/en/function.date.php
* @param array $js_options JavaScript options.
*
* @return string
*/
public static function get_php_format( $js_options ) {
return strtr( $js_options['dateFormat'], self::$date_formats );
}
}