2016-07-26 15:31:16 +03:00
|
|
|
<?php
|
2019-08-22 18:34:27 +03:00
|
|
|
declare(strict_types=1);
|
2016-07-26 15:31:16 +03:00
|
|
|
/**
|
2019-08-22 18:34:27 +03:00
|
|
|
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
*
|
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2016-07-26 15:31:16 +03:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-08-22 18:34:27 +03:00
|
|
|
namespace OCA\WorkflowEngine\Settings;
|
|
|
|
|
2019-08-23 17:56:24 +03:00
|
|
|
use OCP\WorkflowEngine\IManager;
|
|
|
|
|
2019-08-22 18:34:27 +03:00
|
|
|
class Personal extends ASettings {
|
|
|
|
|
2019-08-23 17:56:24 +03:00
|
|
|
function getScope(): int {
|
|
|
|
return IManager::SCOPE_USER;
|
2019-08-22 18:34:27 +03:00
|
|
|
}
|
2020-03-13 16:36:47 +03:00
|
|
|
|
|
|
|
public function getSection() {
|
|
|
|
return $this->manager->isUserScopeEnabled() ? 'workflow' : null;
|
|
|
|
}
|
2019-08-22 18:34:27 +03:00
|
|
|
}
|