1 | <?php |
||
18 | class SettingsController extends AbstractViewController |
||
19 | { |
||
20 | /** |
||
21 | * The index view template path |
||
22 | */ |
||
23 | const TEMPLATE_INDEX = AbstractViewController::TEMPLATE_BASE . '/settings'; |
||
24 | |||
25 | /** |
||
26 | * Index |
||
27 | * |
||
28 | * @return \yii\web\Response |
||
29 | */ |
||
30 | public function actionIndex() |
||
39 | |||
40 | |||
41 | /******************************************* |
||
42 | * BASE PATHS |
||
43 | *******************************************/ |
||
44 | |||
45 | /** |
||
46 | * @return string |
||
47 | */ |
||
48 | protected function getBaseActionPath(): string |
||
52 | |||
53 | /** |
||
54 | * @return string |
||
55 | */ |
||
56 | protected function getBaseCpPath(): string |
||
60 | |||
61 | /******************************************* |
||
62 | * VARIABLES |
||
63 | *******************************************/ |
||
64 | |||
65 | /** |
||
66 | * @inheritdoc |
||
67 | */ |
||
68 | protected function baseVariables(array &$variables = []) |
||
77 | } |
||
78 |