1 | <?php |
||
17 | class Settings extends Controller |
||
18 | { |
||
19 | /** |
||
20 | * Constructor |
||
21 | */ |
||
22 | public function __construct() |
||
26 | |||
27 | /** |
||
28 | * Route page callback to display the module settings page |
||
29 | */ |
||
30 | public function editSettings() |
||
41 | |||
42 | /** |
||
43 | * Returns an array of supported hashing algorithms fo JWT tokens |
||
44 | * @return array |
||
45 | */ |
||
46 | protected function getHashingAlgorithms() |
||
53 | |||
54 | /** |
||
55 | * Set title on the module settings page |
||
56 | */ |
||
57 | protected function setTitleEditSettings() |
||
62 | |||
63 | /** |
||
64 | * Set breadcrumbs on the module settings page |
||
65 | */ |
||
66 | protected function setBreadcrumbEditSettings() |
||
82 | |||
83 | /** |
||
84 | * Saves the submitted settings |
||
85 | */ |
||
86 | protected function submitSettings() |
||
92 | |||
93 | /** |
||
94 | * Validate submitted module settings |
||
95 | * @return bool |
||
96 | */ |
||
97 | protected function validateSettings() |
||
111 | |||
112 | /** |
||
113 | * Update module settings |
||
114 | */ |
||
115 | protected function updateSettings() |
||
121 | |||
122 | /** |
||
123 | * Render and output the module settings page |
||
124 | */ |
||
125 | protected function outputEditSettings() |
||
129 | } |
||
130 |