0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-05 17:10:17 +00:00
nextcloud_server/apps/files_trashbin/lib/Capabilities.php
provokateurin 31c21c7797
feat(files_trashbin): Allow preventing trash to be deleted permanently
Signed-off-by: provokateurin <kate@provokateurin.de>
2025-01-13 15:19:19 +01:00

37 lines
749 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\Files_Trashbin;
use OCA\Files_Trashbin\Service\ConfigService;
use OCP\Capabilities\ICapability;
/**
* Class Capabilities
*
* @package OCA\Files_Trashbin
*/
class Capabilities implements ICapability {
/**
* Return this classes capabilities
*
* @return array{
* files: array{
* undelete: bool,
* delete_from_trash: bool
* }
* }
*/
public function getCapabilities() {
return [
'files' => [
'undelete' => true,
'delete_from_trash' => ConfigService::getDeleteFromTrashEnabled(),
]
];
}
}