Conditions | 1 |
Paths | 1 |
Total Lines | 38 |
Code Lines | 21 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function items() |
||
14 | { |
||
15 | return [ |
||
16 | [ |
||
17 | 'label' => LanguageMenu::widget(), |
||
18 | 'encode' => false, |
||
19 | 'options' => [ |
||
20 | 'class' => 'dropdown language-menu', |
||
21 | ], |
||
22 | ], |
||
23 | [ |
||
24 | 'label' => ReminderTop::widget(), |
||
25 | 'encode' => false, |
||
26 | 'options' => [ |
||
27 | 'id' => 'reminders', |
||
28 | 'class' => 'dropdown notifications-menu reminders', |
||
29 | ], |
||
30 | ], |
||
31 | [ |
||
32 | 'label' => PanelTopCart::widget(), |
||
33 | 'encode' => false, |
||
34 | 'options' => [ |
||
35 | 'class' => 'dropdown notifications-menu' |
||
36 | ], |
||
37 | ], |
||
38 | [ |
||
39 | 'label' => UserMenu::widget(), |
||
40 | 'encode' => false, |
||
41 | 'options' => [ |
||
42 | 'class' => 'dropdown user user-menu' |
||
43 | ] |
||
44 | ], |
||
45 | [ |
||
46 | 'label' => '<a href="#" data-toggle="control-sidebar"><i class="fa fa-gears"></i></a>', |
||
47 | 'encode' => false, |
||
48 | ] |
||
49 | ]; |
||
50 | } |
||
51 | } |
||
52 |