1 | <?php |
||
17 | class Settings extends BackendController |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Constructor |
||
22 | */ |
||
23 | public function __construct() |
||
27 | |||
28 | /** |
||
29 | * Route page callback to display the module settings page |
||
30 | */ |
||
31 | public function editSettings() |
||
41 | |||
42 | /** |
||
43 | * Set title on the module settings page |
||
44 | */ |
||
45 | protected function setTitleEditSettings() |
||
49 | |||
50 | /** |
||
51 | * Set breadcrumbs on the module settings page |
||
52 | */ |
||
53 | protected function setBreadcrumbEditSettings() |
||
69 | |||
70 | /** |
||
71 | * Saves the submitted settings |
||
72 | */ |
||
73 | protected function submitSettings() |
||
79 | |||
80 | /** |
||
81 | * Validate submitted module settings |
||
82 | */ |
||
83 | protected function validateSettings() |
||
88 | |||
89 | /** |
||
90 | * Update module settings |
||
91 | */ |
||
92 | protected function updateSettings() |
||
98 | |||
99 | /** |
||
100 | * Render and output the module settings page |
||
101 | */ |
||
102 | protected function outputEditSettings() |
||
106 | |||
107 | } |
||
108 |