1 | <?php |
||
19 | class LimitsController extends AbstractController |
||
20 | { |
||
21 | /** |
||
22 | * The template base path |
||
23 | */ |
||
24 | const TEMPLATE_BASE = parent::TEMPLATE_BASE . '/limits'; |
||
25 | |||
26 | /** |
||
27 | * The index view template path |
||
28 | */ |
||
29 | const TEMPLATE_INDEX = self::TEMPLATE_BASE . '/index'; |
||
30 | |||
31 | /** |
||
32 | * @return Response |
||
33 | */ |
||
34 | public function actionIndex(): Response |
||
53 | |||
54 | /******************************************* |
||
55 | * BASE PATHS |
||
56 | *******************************************/ |
||
57 | |||
58 | /** |
||
59 | * @return string |
||
60 | */ |
||
61 | protected function getBaseCpPath(): string |
||
65 | |||
66 | /** |
||
67 | * @return string |
||
68 | */ |
||
69 | protected function getBaseActionPath(): string |
||
73 | } |
||
74 |