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.
|
|
|
|
*/
|
|
|
|
|
2012-12-17 17:46:57 +04:00
|
|
|
OC_Util::checkAdminUser();
|
|
|
|
|
2012-05-07 01:00:36 +04:00
|
|
|
$tmpl = new OCP\Template( 'files_encryption', 'settings');
|
2012-11-29 21:41:32 +04:00
|
|
|
$blackList=explode(',', OCP\Config::getAppValue('files_encryption',
|
|
|
|
'type_blacklist',
|
|
|
|
'jpg,png,jpeg,avi,mpg,mpeg,mkv,mp3,oga,ogv,ogg'));
|
2012-11-04 14:10:46 +04:00
|
|
|
$enabled=(OCP\Config::getAppValue('files_encryption', 'enable_encryption', 'true')=='true');
|
2012-11-02 22:53:02 +04:00
|
|
|
$tmpl->assign('blacklist', $blackList);
|
|
|
|
$tmpl->assign('encryption_enabled', $enabled);
|
2012-02-23 01:20:46 +04:00
|
|
|
|
2012-11-04 14:10:46 +04:00
|
|
|
OCP\Util::addscript('files_encryption', 'settings');
|
|
|
|
OCP\Util::addscript('core', 'multiselect');
|
2012-02-23 01:20:46 +04:00
|
|
|
|
2012-12-17 17:46:57 +04:00
|
|
|
return $tmpl->fetchPage();
|