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