Exemple #1
0
 /**
  * File constructor.
  * @param string $name
  * @param bool $multiple whether or not multiple file can be selected
  * @param string $accept file type to accept @link http://www.w3schools.com/tags/att_input_accept.asp
  *
  */
 public function __construct($name, $multiple = false, $accept = null)
 {
     // TODO multiple can be a number
     // TODO more validation (file type, mime type, image size, ...)
     parent::__construct('file', $name);
     $this->multiple = $multiple;
     $this->accept = $accept;
     $this->addSemanticType('input:file');
 }
Exemple #2
0
 public function __construct($name, $attributes = null, $validators = null, $filters = null)
 {
     parent::__construct("submit", $name, $attributes, $validators, $filters);
 }
Exemple #3
0
 public function __construct($name, $value = null, $attributes = null, $validators = null, $filters = null)
 {
     parent::__construct("checkbox", $name, $attributes, $validators, $filters);
     $this->value = $value;
 }
Exemple #4
0
 public function __construct($name)
 {
     parent::__construct('text', $name);
     $this->addSemanticType('input:textfield');
     $this->addSemanticType('input:text');
 }
Exemple #5
0
 public function __construct($name = null)
 {
     parent::__construct('submit', $name);
     $this->addSemanticType('input:submit');
 }
Exemple #6
0
 public function __construct($name)
 {
     parent::__construct('hidden', $name);
     $this->addSemanticType('input:hidden');
 }
Exemple #7
0
 public function __construct($name)
 {
     parent::__construct('checkbox', $name);
     $this->addSemanticType('input:checkbox');
 }
Exemple #8
0
 public function __construct($name, $value)
 {
     parent::__construct('radio', $name);
     $this->addSemanticType('input:radio');
     $this->value = $value;
 }