| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 72.72% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 3 | class Nip_Form_Element_Radio extends Nip_Form_Element_Input_Abstract |
||
| 4 | { |
||
| 5 | protected $_type = 'radio'; |
||
| 6 | 3 | ||
| 7 | public function init() |
||
| 11 | } |
||
| 12 | |||
| 13 | public function isChecked() |
||
| 14 | { |
||
| 15 | return $this->getAttrib('checked') == 'checked'; |
||
| 16 | } |
||
| 17 | |||
| 18 | 2 | ||
| 19 | public function setChecked($checked) |
||
| 28 | } |
||
| 29 | } |
||
| 30 |