@@ -27,18 +27,18 @@ |
||
| 27 | 27 | |
| 28 | 28 | class SettingsPage extends PageType { |
| 29 | 29 | |
| 30 | - public function getContent(): string { |
|
| 31 | - $template = new DwooTemplate("pages/sendmail"); |
|
| 30 | + public function getContent(): string { |
|
| 31 | + $template = new DwooTemplate("pages/sendmail"); |
|
| 32 | 32 | |
| 33 | - $template->assign("form_action", DomainUtils::generateURL("admin/sendmail")); |
|
| 34 | - $template->assign("content", ""); |
|
| 33 | + $template->assign("form_action", DomainUtils::generateURL("admin/sendmail")); |
|
| 34 | + $template->assign("content", ""); |
|
| 35 | 35 | |
| 36 | - return $template->getCode(); |
|
| 37 | - } |
|
| 36 | + return $template->getCode(); |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | - public function listRequiredPermissions(): array { |
|
| 40 | - return array("can_see_global_settings", "can_edit_global_settings"); |
|
| 41 | - } |
|
| 39 | + public function listRequiredPermissions(): array { |
|
| 40 | + return array("can_see_global_settings", "can_edit_global_settings"); |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | 43 | } |
| 44 | 44 | |