You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings-admin.php 693B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright (c) 2011 Robin Appelman <icewind@owncloud.com>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. \OC_Util::checkAdminUser();
  9. $tmpl = new OCP\Template('files_encryption', 'settings-admin');
  10. // Check if an adminRecovery account is enabled for recovering files after lost pwd
  11. $view = new OC_FilesystemView('');
  12. $recoveryAdminEnabled = OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled');
  13. $tmpl->assign('recoveryEnabled', $recoveryAdminEnabled);
  14. \OCP\Util::addscript('files_encryption', 'settings-admin');
  15. \OCP\Util::addscript('core', 'multiselect');
  16. return $tmpl->fetchPage();