12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace OCA\Settings\Settings\Personal;
- use OCP\AppFramework\Http\TemplateResponse;
- use OCP\Settings\ISettings;
- class Additional implements ISettings {
-
- public function getForm(): TemplateResponse {
- return new TemplateResponse('settings', 'settings/empty');
- }
-
- public function getSection(): string {
- return 'additional';
- }
-
- public function getPriority(): int {
- return 5;
- }
- }
|