| 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 |
||
| 59 | |||
| 60 | /******************************************* |
||
| 61 | * BASE PATHS |
||
| 62 | *******************************************/ |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @return string |
||
| 66 | */ |
||
| 67 | protected function getBaseCpPath(): string |
||
| 71 | |||
| 72 | /** |
||
| 73 | * @return string |
||
| 74 | */ |
||
| 75 | protected function getBaseActionPath(): string |
||
| 79 | } |
||
| 80 |