1 | <?php |
||
21 | class LimitsController extends AbstractController |
||
22 | { |
||
23 | /** |
||
24 | * The template base path |
||
25 | */ |
||
26 | const TEMPLATE_BASE = parent::TEMPLATE_BASE . '/limits'; |
||
27 | |||
28 | /** |
||
29 | * The index view template path |
||
30 | */ |
||
31 | const TEMPLATE_INDEX = self::TEMPLATE_BASE . '/index'; |
||
32 | |||
33 | /** |
||
34 | * @return Response |
||
35 | */ |
||
36 | public function actionIndex(): Response |
||
61 | |||
62 | /******************************************* |
||
63 | * BASE PATHS |
||
64 | *******************************************/ |
||
65 | |||
66 | /** |
||
67 | * @return string |
||
68 | */ |
||
69 | protected function getBaseCpPath(): string |
||
73 | |||
74 | /** |
||
75 | * @return string |
||
76 | */ |
||
77 | protected function getBaseActionPath(): string |
||
81 | |||
82 | /******************************************* |
||
83 | * VARIABLES |
||
84 | *******************************************/ |
||
85 | |||
86 | /** |
||
87 | * @inheritdoc |
||
88 | */ |
||
89 | protected function baseVariables(array &$variables = []) |
||
102 | } |
||
103 |