2012-02-22 21:20:46 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 10:37:37 +00: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-22 21:20:46 +00:00
|
|
|
*/
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2013-01-10 18:04:52 +00:00
|
|
|
\OC_Util::checkAdminUser();
|
2012-02-22 21:20:46 +00:00
|
|
|
|
2013-05-29 21:13:45 +00:00
|
|
|
$tmpl = new OCP\Template('files_encryption', 'settings-admin');
|
2013-01-10 18:04:52 +00:00
|
|
|
|
2013-03-29 20:11:29 +00:00
|
|
|
// Check if an adminRecovery account is enabled for recovering files after lost pwd
|
2014-02-13 15:28:49 +00:00
|
|
|
$recoveryAdminEnabled = \OC::$server->getAppConfig()->getValue('files_encryption', 'recoveryAdminEnabled', '0');
|
2014-12-03 15:52:44 +00:00
|
|
|
$session = new \OCA\Files_Encryption\Session(new \OC\Files\View('/'));
|
2014-07-28 09:31:06 +00:00
|
|
|
$initStatus = $session->getInitialized();
|
2013-03-29 20:11:29 +00:00
|
|
|
|
2013-05-29 21:13:45 +00:00
|
|
|
$tmpl->assign('recoveryEnabled', $recoveryAdminEnabled);
|
2014-07-28 09:31:06 +00:00
|
|
|
$tmpl->assign('initStatus', $initStatus);
|
2013-01-10 18:04:52 +00:00
|
|
|
|
2013-05-29 21:13:45 +00:00
|
|
|
\OCP\Util::addscript('files_encryption', 'settings-admin');
|
|
|
|
\OCP\Util::addscript('core', 'multiselect');
|
2012-02-22 21:20:46 +00:00
|
|
|
|
|
|
|
return $tmpl->fetchPage();
|