/home/techb158/l2hypotheques.com/wp-content/plugins/codestar-framework/fields/date
Edit: /home/techb158/l2hypotheques.com/wp-content/plugins/codestar-framework/fields/date/date.php (2005B)
'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 '
';
echo '
';
} 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' );
}
}
}
}