mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
29 lines
539 B
PHP
29 lines
539 B
PHP
<?php
|
|
|
|
namespace OCA\Signer\Settings;
|
|
|
|
use OCA\Signer\AppInfo\Application;
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\BackgroundJob\IJobList;
|
|
use OCP\IAppConfig;
|
|
use OCP\IDateTimeFormatter;
|
|
use OCP\IL10N;
|
|
use OCP\Settings\ISettings;
|
|
|
|
class AdminSettings implements ISettings
|
|
{
|
|
public function getForm()
|
|
{
|
|
return new TemplateResponse(Application::APP_ID, 'settings');
|
|
}
|
|
|
|
public function getSection()
|
|
{
|
|
return 'security';
|
|
}
|
|
|
|
public function getPriority()
|
|
{
|
|
return 00;
|
|
}
|
|
}
|