Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | public function __construct($identifier,$value=NULL,$placeholder=NULL,$rows=NULL) { |
||
11 | parent::__construct($identifier, "textarea"); |
||
12 | $this->setValue($value); |
||
13 | $this->setPlaceholder($placeholder); |
||
14 | if(isset($rows)) |
||
15 | $this->setRows($rows); |
||
16 | } |
||
17 | public function setValue($value) { |
||
32 | } |