25 lines
532 B
PHP
25 lines
532 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\MailCalendarSync\Settings;
|
|
|
|
use OCA\MailCalendarSync\AppInfo\Application;
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\Settings\ISettings;
|
|
|
|
class PersonalSettings implements ISettings {
|
|
|
|
public function getForm(): TemplateResponse {
|
|
return new TemplateResponse(Application::APP_ID, 'personal-settings');
|
|
}
|
|
|
|
public function getSection(): string {
|
|
return 'mail_calendar_sync';
|
|
}
|
|
|
|
public function getPriority(): int {
|
|
return 80;
|
|
}
|
|
}
|