Beispiel #1
0
 /**
  * @inheritdoc
  */
 public function __construct(array $options = ["step" => null, "min" => null, "max" => null])
 {
     $options = array_merge(["step" => null, "min" => null, "max" => null], $options);
     $this->step = $options['step'];
     $this->min = $options['min'];
     $this->max = $options['max'];
     parent::__construct("number");
 }
Beispiel #2
0
 /**
  * @inheritdoc
  */
 public function __construct()
 {
     parent::__construct("color");
 }
Beispiel #3
0
 /**
  * @inheritdoc
  */
 public function __construct()
 {
     parent::__construct("tel");
 }
 /**
  * @inheritdoc
  */
 public function __construct()
 {
     parent::__construct("datetime");
 }
Beispiel #5
0
 /**
  * RadioInput constructor.
  */
 public function __construct()
 {
     parent::__construct("radio");
 }
 /**
  * PasswordInput constructor.
  *
  * @param bool $hide_value
  */
 public function __construct($hide_value = true)
 {
     parent::__construct("password");
     $this->hide_value = $hide_value;
 }
Beispiel #7
0
 /**
  * @inheritdoc
  */
 public function __construct()
 {
     parent::__construct("month");
 }
Beispiel #8
0
 /**
  * SubmitInput constructor.
  */
 public function __construct()
 {
     parent::__construct("submit");
 }
Beispiel #9
0
 /**
  * @inheritdoc
  */
 public function __construct()
 {
     parent::__construct("search");
 }
Beispiel #10
0
 /**
  * @inheritdoc
  */
 public function __construct(array $options = ["step" => null])
 {
     $options = array_merge(["step" => null], $options);
     $this->step = $options['step'];
     parent::__construct("range");
 }
Beispiel #11
0
 /**
  * @inheritdoc
  */
 public function __construct()
 {
     parent::__construct("week");
 }
Beispiel #12
0
 /**
  * CheckboxInput constructor.
  */
 public function __construct()
 {
     parent::__construct("checkbox");
 }