File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/date.class.php.tar
www/vhosts/uyarreklam.com.tr/httpdocs/wp-content/themes/vadimarketv4/inc/form-fields/date.class.php 0000644 00000002146 15155034023 0030333 0 ustar 00 var <?php
/**
* Class Temavadisi_Custom_Field_Date
*/
class Temavadisi_Custom_Field_Date extends SiteOrigin_Widget_Field_Base {
protected $prompt;
protected function render_field( $value, $instance ) {
?>
<input type="datetime-local" id="<?php echo $this->element_id ?>" name="<?php echo $this->element_name ?>" min="<?php echo date("Y-m-d\TH:i"); ?>" value="<?php echo $value; ?>">
<?php
}
protected function sanitize_field_input($value, $instance) {
$sanitized_value = sanitize_text_field( $value );
return $sanitized_value;
}
protected function get_label_classes( $value, $instance ) {
$label_classes = parent::get_label_classes( $value, $instance );
$label_classes[] = 'wd_title';
return $label_classes;
}
protected function render_field_label($value, $instance) {
parent::render_field_label( $value, $instance );
}
protected function render_before_field( $value, $instance ) {
parent::render_before_field( $value, $instance );
}
protected function render_after_field( $value, $instance ) {
$this->render_field_description();
}
}