示例#1
0
文件: Submit.php 项目: rezon/sugi
 public function __construct($name, $label)
 {
     parent::__construct($name, false);
     $this->label = false;
     $this->setAttribute("value", $label);
     $this->setAttribute("type", "submit");
 }
示例#2
0
文件: Checkbox.php 项目: rezon/sugi
 public function __construct($name, $label, $value = true)
 {
     parent::__construct($name, $label);
     $this->val = $value;
     $this->setAttribute("value", $value);
     $this->setAttribute("type", "checkbox");
 }
示例#3
0
文件: Upload.php 项目: rezon/sugi
 public function __construct($name, $label)
 {
     parent::__construct($name, $label);
     $this->setAttribute("type", "file");
 }