public function check_data_input($input)
 {
     if ((int) $input == 0) {
         return false;
     }
     return parent::check_data_input($input);
 }
Beispiel #2
0
 public function __construct($show_name, $name, $is_must_input = false)
 {
     parent::__construct($show_name, $name, $is_must_input);
     $this->typ = "Field_ts";
 }