| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function __construct($identifier, $name=NULL,$label=NULL,$value=NULL) { |
||
| 15 | $input=new HtmlFormInput($identifier,$label,"checkbox",$value); |
||
| 16 | parent::__construct("rField-".$identifier, $input); |
||
| 17 | if(isset($label)){ |
||
| 18 | $input->swapLabel(); |
||
| 19 | $label=$input->getLabel(); |
||
| 20 | $label->setClass="hidden"; |
||
| 21 | $label->setProperty("tabindex",0); |
||
| 22 | } |
||
| 23 | $this->_input=$input; |
||
| 24 | } |
||
| 25 | |||
| 35 | } |