Conditions | 2 |
Paths | 2 |
Total Lines | 30 |
Code Lines | 25 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function indexAction($component = null) |
||
17 | { |
||
18 | $components = [ |
||
19 | 'color', |
||
20 | 'text', |
||
21 | 'heading', |
||
22 | 'layout', |
||
23 | 'button', |
||
24 | 'drops', |
||
25 | 'fab', |
||
26 | 'form', |
||
27 | 'slots', |
||
28 | 'widgets', |
||
29 | 'input-images', |
||
30 | 'list-group', |
||
31 | 'seo', |
||
32 | 'image', |
||
33 | 'menu', |
||
34 | 'mode-switcher', |
||
35 | 'navbar', |
||
36 | 'modal', |
||
37 | 'collapse', |
||
38 | 'alert', |
||
39 | ]; |
||
40 | |||
41 | return [ |
||
42 | 'components' => $component ? [$component] : $components, |
||
43 | 'focus' => $component != null, |
||
44 | ]; |
||
45 | } |
||
46 | } |
||
47 |