![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/www/wp-content/themes/dt-the7/inc/extensions/meta-box/inc/fields/ |
<?php // Prevent loading this file directly defined( 'ABSPATH' ) || exit; if ( ! class_exists( 'THE7_RWMB_Time_Field' ) ) { class THE7_RWMB_Time_Field { /** * Enqueue scripts and styles * * @return void */ static function admin_enqueue_scripts( ) { $url = THE7_RWMB_CSS_URL . 'jqueryui'; wp_register_style( 'jquery-ui-core', "{$url}/jquery.ui.core.css", array(), '1.8.17' ); wp_register_style( 'jquery-ui-theme', "{$url}/jquery.ui.theme.css", array(), '1.8.17' ); wp_register_style( 'jquery-ui-datepicker', "{$url}/jquery.ui.datepicker.css", array( 'jquery-ui-core', 'jquery-ui-theme' ), '1.8.17' ); wp_register_style( 'jquery-ui-slider', "{$url}/jquery.ui.slider.css", array( 'jquery-ui-core', 'jquery-ui-theme' ), '1.8.17' ); wp_enqueue_style( 'jquery-ui-timepicker', "{$url}/jquery-ui-timepicker-addon.css", array( 'jquery-ui-datepicker', 'jquery-ui-slider' ), '0.9.7' ); $url = THE7_RWMB_JS_URL . 'jqueryui'; wp_register_script( 'jquery-ui-timepicker', "{$url}/jquery-ui-timepicker-addon.js", array( 'jquery-ui-datepicker', 'jquery-ui-slider' ), '0.9.7', true ); $locale = str_replace( '_', '-', get_locale() ); wp_register_script( 'jquery-ui-timepicker-i18n', "{$url}/timepicker-i18n/jquery-ui-timepicker-{$locale}.js", array( 'jquery-ui-timepicker' ), '0.9.7', true ); wp_enqueue_script( 'the7-mb-time', THE7_RWMB_JS_URL.'time.js', array( 'jquery-ui-timepicker' ), THE7_RWMB_VER, true ); wp_localize_script( 'the7-mb-time', 'THE7_RWMB_Timepicker', array( 'lang' => $locale ) ); } /** * Get field HTML * * @param string $html * @param mixed $meta * @param array $field * * @return string */ static function html( $html, $meta, $field ) { return sprintf( '<input type="text" class="the7-mb-time" name="%s" value="%s" id="%s" size="%s" data-options="%s" />', $field['field_name'], $meta, isset( $field['clone'] ) && $field['clone'] ? '' : $field['id'], $field['size'], esc_attr( json_encode( $field['js_options'] ) ) ); } /** * Normalize parameters for field * * @param array $field * * @return array */ static function normalize_field( $field ) { $field = wp_parse_args( $field, array( 'size' => 30, 'js_options' => array(), ) ); // Deprecate 'format', but keep it for backward compatible // Use 'js_options' instead $field['js_options'] = wp_parse_args( $field['js_options'], array( 'showButtonPanel' => true, 'timeFormat' => empty( $field['format'] ) ? 'hh:mm:ss' : $field['format'], ) ); return $field; } } }