1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?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 $field Field parameters. * * @return string */ public static function translate_format( $field ) { return strtr( $field['js_options']['dateFormat'], self::$date_formats ); } }
|