| Conditions | 5 |
| Paths | 5 |
| Total Lines | 16 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 5 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function isActive($item) |
||
| 21 | { |
||
| 22 | 22 | if (isset($item['active'])) { |
|
| 23 | 8 | return $this->isExplicitActive($item['active']); |
|
| 24 | } |
||
| 25 | |||
| 26 | 19 | if (isset($item['submenu'])) { |
|
| 27 | 17 | return $this->containsActive($item['submenu']); |
|
| 28 | } |
||
| 29 | |||
| 30 | 2 | if (isset($item['url'])) { |
|
| 31 | return $this->checkExact($item['url']) || $this->checkSub($item['url']); |
||
| 32 | } |
||
| 33 | 20 | ||
| 34 | return false; |
||
| 35 | 20 | } |
|
| 36 | |||
| 76 |