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="",$type="text",$placeholder=""){ |
||
11 | parent::__construct("div-".$identifier,"div","ui input"); |
||
12 | $this->content=new \Ajax\common\html\html5\HtmlInput($identifier,$type); |
||
13 | $this->content->setProperty("value", $value); |
||
14 | if(JString::isNotNull($placeholder)) |
||
15 | $this->content->setProperty("placeholder", $placeholder); |
||
16 | } |
||
17 | } |