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