1 | <?php |
||
17 | class Settings extends Controller |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Route page callback to display the module settings page |
||
22 | */ |
||
23 | public function editSettings() |
||
31 | |||
32 | /** |
||
33 | * Sets the module settings |
||
34 | */ |
||
35 | protected function setDataModuleSettings() |
||
41 | |||
42 | /** |
||
43 | * Set title on the module settings page |
||
44 | */ |
||
45 | protected function setTitleEditSettings() |
||
50 | |||
51 | /** |
||
52 | * Set breadcrumbs on the module settings page |
||
53 | */ |
||
54 | protected function setBreadcrumbEditSettings() |
||
70 | |||
71 | /** |
||
72 | * Saves the submitted settings |
||
73 | */ |
||
74 | protected function submitSettings() |
||
80 | |||
81 | /** |
||
82 | * Validate submitted module settings |
||
83 | * @return bool |
||
84 | */ |
||
85 | protected function validateSettings() |
||
98 | |||
99 | /** |
||
100 | * Update module settings |
||
101 | */ |
||
102 | protected function updateSettings() |
||
109 | |||
110 | /** |
||
111 | * Render and output the module settings page |
||
112 | */ |
||
113 | protected function outputEditSettings() |
||
117 | |||
118 | } |
||
119 |