2012-02-23 01:20:46 +04:00
|
|
|
<?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.
|
|
|
|
*/
|
|
|
|
|
2013-01-10 22:04:52 +04:00
|
|
|
\OC_Util::checkAdminUser();
|
2012-02-23 01:20:46 +04:00
|
|
|
|
2013-05-01 21:18:31 +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
|
|
|
|
$view = new OC_FilesystemView( '' );
|
2013-05-01 21:18:31 +04:00
|
|
|
|
|
|
|
$recoveryAdminEnabled = OC_Appconfig::getValue( 'files_encryption', 'recoveryAdminEnabled' );
|
2013-03-30 00:11:29 +04:00
|
|
|
|
2013-01-10 22:04:52 +04:00
|
|
|
$tmpl->assign( 'encryption_mode', \OC_Appconfig::getValue( 'files_encryption', 'mode', 'none' ) );
|
2013-05-01 21:18:31 +04:00
|
|
|
$tmpl->assign( 'recoveryEnabled', $recoveryAdminEnabled );
|
2013-01-10 22:04:52 +04:00
|
|
|
|
2013-05-01 21:18:31 +04:00
|
|
|
\OCP\Util::addscript( 'files_encryption', 'settings-admin' );
|
2013-01-10 22:04:52 +04:00
|
|
|
\OCP\Util::addscript( 'core', 'multiselect' );
|
2012-02-23 01:20:46 +04:00
|
|
|
|
|
|
|
return $tmpl->fetchPage();
|