Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | public function __construct($identifier,$type="text",$value=NULL,$placeholder=NULL) { |
||
11 | parent::__construct($identifier, "input"); |
||
12 | $this->setProperty("name", $identifier); |
||
13 | $this->setValue($value); |
||
14 | $this->setPlaceholder($placeholder); |
||
15 | $this->setProperty("type", $type); |
||
16 | } |
||
17 | |||
33 | } |