| Conditions | 3 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | if (is_string($items)) { |
||
| 32 | $menu = [ |
||
| 33 | 'title' => $items, |
||
| 34 | 'url' => $this->getRouteUrl('admin.' . $items), |
||
| 35 | 'child' => [], |
||
| 36 | ]; |
||
| 37 | $menus->push($menu); |
||
| 38 | } elseif (is_array($items)) { // child |
||
| 39 | $childs = $this->getAdminMenu($items); |
||
| 40 | if (!empty($childs)) { |
||
| 41 | $menu = [ |
||
| 42 | 'title' => $key, |
||
| 43 | 'url' => '/#', |
||
| 44 | 'child' => $childs, |
||
| 45 | ]; |
||
| 60 |