示例#1
0
文件: input.php 项目: azuya/Wi3
 public function __construct($name)
 {
     parent::__construct($name);
     $this->attr("type", "text");
 }
示例#2
0
文件: select.php 项目: azuya/Wi3
 public function __construct($name = "")
 {
     parent::__construct($name);
     // Set attributes
     $this->attr("name", $name);
 }