2023-08-08 11:52:21 +02:00
|
|
|
<?php
|
|
|
|
namespace OCA\GroupfolderFilesystemSnapshots\Settings;
|
|
|
|
|
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
|
|
use OCP\Settings\ISettings;
|
|
|
|
|
|
|
|
class SnapshotsAdmin implements ISettings {
|
|
|
|
|
2024-04-23 19:51:41 +02:00
|
|
|
public function __construct() {
|
2023-08-08 11:52:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return TemplateResponse
|
|
|
|
*/
|
|
|
|
public function getForm() {
|
2024-04-23 19:51:41 +02:00
|
|
|
return new TemplateResponse('groupfolder_filesystem_snapshots', 'settings/admin');
|
2023-08-08 11:52:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getSection() {
|
|
|
|
return 'groupfolder_filesystem_snapshots';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPriority() {
|
|
|
|
return 10;
|
|
|
|
}
|
|
|
|
}
|