Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class AdminAppController extends AppController |
||
19 | { |
||
20 | public $helpers = [ |
||
21 | 'Admin.Admin', |
||
22 | // Bootstrap-UI-plugin helpers overwrite default Cake helpers |
||
23 | 'Html' => ['className' => 'BootstrapUI.Html'], |
||
24 | 'Form' => ['className' => 'BootstrapUI.Form'], |
||
25 | 'Flash' => ['className' => 'BootstrapUI.Flash'], |
||
26 | 'Paginator' => ['className' => 'BootstrapUI.Paginator'], |
||
27 | 'Breadcrumbs' => ['className' => 'BootstrapUI.Breadcrumbs'], |
||
28 | ]; |
||
29 | |||
30 | /** |
||
31 | * {@inheritDoc} |
||
32 | */ |
||
33 | public function beforeFilter(Event $event) |
||
39 |