예제 #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);
 }