2022-07-10 15:43:07 +02:00
|
|
|
<?php
|
2022-07-17 12:33:43 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-07-10 15:43:07 +02:00
|
|
|
namespace OCA\GPodderSync\Settings;
|
|
|
|
|
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
|
|
use OCP\Settings\ISettings;
|
|
|
|
|
|
|
|
class GPodderSyncPersonal implements ISettings {
|
|
|
|
|
|
|
|
public function getForm(): TemplateResponse {
|
2022-07-17 12:33:43 +02:00
|
|
|
return new TemplateResponse('gpoddersync', 'settings/personal', []);
|
2022-07-10 15:43:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getSection(): string {
|
|
|
|
return 'gpoddersync';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPriority(): int {
|
|
|
|
return 198;
|
|
|
|
}
|
|
|
|
}
|