Example #1
0
File: input.php Project: azuya/Wi3
 public function __construct($name)
 {
     parent::__construct($name);
     $this->attr("type", "text");
 }
Example #2
0
File: select.php Project: azuya/Wi3
 public function __construct($name = "")
 {
     parent::__construct($name);
     // Set attributes
     $this->attr("name", $name);
 }