コード例 #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);
 }