2012-02-23 01:20:46 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* Copyright (c) 2011 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
2012-02-23 01:20:46 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03: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();
|