芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/wp-content/plugins/dexolix-core/library/codestar/fields/date/date.php
'mm/dd/yy', ); $settings = ( ! empty( $this->field['settings'] ) ) ? $this->field['settings'] : array(); $settings = wp_parse_args( $settings, $default_settings ); echo $this->field_before(); if ( ! empty( $this->field['from_to'] ) ) { $args = wp_parse_args( $this->field, array( 'text_from' => esc_html__( 'From', 'csf' ), 'text_to' => esc_html__( 'To', 'csf' ), ) ); $value = wp_parse_args( $this->value, array( 'from' => '', 'to' => '', ) ); echo '
'. esc_attr( $args['text_from'] ) .'
field_attributes() .'/>
'; echo '
'. esc_attr( $args['text_to'] ) .'
field_attributes() .'/>
'; } else { echo '
field_attributes() .'/>'; } echo '
'; echo $this->field_after(); } public function enqueue() { if ( ! wp_script_is( 'jquery-ui-datepicker' ) ) { wp_enqueue_script( 'jquery-ui-datepicker' ); } } } }