Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
10 | 4 | public function toggleCurrent() |
|
11 | { |
||
12 | 4 | list($checkbox, $checkbox_key) = $this->getCurrent(); |
|
13 | |||
14 | 4 | $checkbox->setChecked(!$checkbox->isChecked()); |
|
15 | |||
16 | 4 | foreach ($this->checkboxes as $key => $checkbox) { |
|
17 | 4 | if ($key == $checkbox_key) { |
|
18 | 4 | continue; |
|
19 | } |
||
20 | |||
21 | 4 | $checkbox->setChecked(false); |
|
22 | 4 | } |
|
23 | 4 | } |
|
24 | |||
39 |