2012-02-23 01:20:46 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-23 13:28:53 +03:00
|
|
|
* @author Bjoern Schiessle <schiessle@owncloud.com>
|
|
|
|
* @author Florin Peter <github@florin-peter.de>
|
|
|
|
* @author Joas Schilling <nickvergessen@gmx.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Sam Tuke <mail@samtuke.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2012-02-23 01:20:46 +04:00
|
|
|
*/
|
2013-01-10 22:04:52 +04:00
|
|
|
\OC_Util::checkAdminUser();
|
2012-02-23 01:20:46 +04:00
|
|
|
|
2013-05-30 01:13:45 +04:00
|
|
|
$tmpl = new OCP\Template('files_encryption', 'settings-admin');
|
2013-01-10 22:04:52 +04:00
|
|
|
|
2013-03-30 00:11:29 +04:00
|
|
|
// Check if an adminRecovery account is enabled for recovering files after lost pwd
|
2014-02-13 19:28:49 +04:00
|
|
|
$recoveryAdminEnabled = \OC::$server->getAppConfig()->getValue('files_encryption', 'recoveryAdminEnabled', '0');
|
2014-12-03 18:52:44 +03:00
|
|
|
$session = new \OCA\Files_Encryption\Session(new \OC\Files\View('/'));
|
2014-07-28 13:31:06 +04:00
|
|
|
$initStatus = $session->getInitialized();
|
2013-03-30 00:11:29 +04:00
|
|
|
|
2013-05-30 01:13:45 +04:00
|
|
|
$tmpl->assign('recoveryEnabled', $recoveryAdminEnabled);
|
2014-07-28 13:31:06 +04:00
|
|
|
$tmpl->assign('initStatus', $initStatus);
|
2013-01-10 22:04:52 +04:00
|
|
|
|
2013-05-30 01:13:45 +04:00
|
|
|
\OCP\Util::addscript('files_encryption', 'settings-admin');
|
|
|
|
\OCP\Util::addscript('core', 'multiselect');
|
2012-02-23 01:20:46 +04:00
|
|
|
|
|
|
|
return $tmpl->fetchPage();
|