예제 #1
0
파일: File.php 프로젝트: gsouf/uform
 /**
  * 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');
 }
예제 #2
0
 public function __construct($name, $attributes = null, $validators = null, $filters = null)
 {
     parent::__construct("submit", $name, $attributes, $validators, $filters);
 }
예제 #3
0
 public function __construct($name, $value = null, $attributes = null, $validators = null, $filters = null)
 {
     parent::__construct("checkbox", $name, $attributes, $validators, $filters);
     $this->value = $value;
 }
예제 #4
0
파일: Text.php 프로젝트: gsouf/uform
 public function __construct($name)
 {
     parent::__construct('text', $name);
     $this->addSemanticType('input:textfield');
     $this->addSemanticType('input:text');
 }
예제 #5
0
파일: Submit.php 프로젝트: gsouf/uform
 public function __construct($name = null)
 {
     parent::__construct('submit', $name);
     $this->addSemanticType('input:submit');
 }
예제 #6
0
파일: Hidden.php 프로젝트: gsouf/uform
 public function __construct($name)
 {
     parent::__construct('hidden', $name);
     $this->addSemanticType('input:hidden');
 }
예제 #7
0
파일: Check.php 프로젝트: gsouf/uform
 public function __construct($name)
 {
     parent::__construct('checkbox', $name);
     $this->addSemanticType('input:checkbox');
 }
예제 #8
0
파일: Radio.php 프로젝트: gsouf/uform
 public function __construct($name, $value)
 {
     parent::__construct('radio', $name);
     $this->addSemanticType('input:radio');
     $this->value = $value;
 }