Blame view
sources/apps/files_encryption/settings-admin.php
827 Bytes
|
03e52840d
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<?php
/**
* 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.
*/
\OC_Util::checkAdminUser();
$tmpl = new OCP\Template('files_encryption', 'settings-admin');
// Check if an adminRecovery account is enabled for recovering files after lost pwd
|
|
6d9380f96
|
14 15 16 |
$recoveryAdminEnabled = \OC::$server->getAppConfig()->getValue('files_encryption', 'recoveryAdminEnabled', '0');
$session = new \OCA\Encryption\Session(new \OC\Files\View('/'));
$initStatus = $session->getInitialized();
|
|
03e52840d
|
17 18 |
$tmpl->assign('recoveryEnabled', $recoveryAdminEnabled);
|
|
6d9380f96
|
19 |
$tmpl->assign('initStatus', $initStatus);
|
|
03e52840d
|
20 21 22 23 24 |
\OCP\Util::addscript('files_encryption', 'settings-admin');
\OCP\Util::addscript('core', 'multiselect');
return $tmpl->fetchPage();
|