You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
655 B
26 lines
655 B
<?php
|
|
defined( 'ABSPATH' ) || die;
|
|
|
|
/**
|
|
* The time picker field.
|
|
*/
|
|
class RWMB_Time_Field extends RWMB_Datetime_Field {
|
|
public static function admin_enqueue_scripts() {
|
|
parent::register_assets();
|
|
wp_enqueue_style( 'jquery-ui-timepicker' );
|
|
wp_enqueue_script( 'rwmb-time' );
|
|
}
|
|
|
|
/**
|
|
* Normalize parameters for field.
|
|
*
|
|
* @param array $field Field parameters.
|
|
* @return array
|
|
*/
|
|
public static function normalize( $field ) {
|
|
$field = parent::normalize( $field );
|
|
$field['js_options']['timeFormat'] = empty( $field['format'] ) ? $field['js_options']['timeFormat'] : $field['format'];
|
|
return $field;
|
|
}
|
|
}
|