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-05-07 01:00:36 +04:00
|
|
|
$tmpl = new OCP\Template( 'files_encryption', 'settings');
|
2012-05-02 16:11:29 +04:00
|
|
|
$blackList=explode(',',OCP\Config::getAppValue('files_encryption','type_blacklist','jpg,png,jpeg,avi,mpg,mpeg,mkv,mp3,oga,ogv,ogg'));
|
|
|
|
$enabled=(OCP\Config::getAppValue('files_encryption','enable_encryption','true')=='true');
|
2012-02-23 01:20:46 +04:00
|
|
|
$tmpl->assign('blacklist',$blackList);
|
2012-04-19 18:36:07 +04:00
|
|
|
$tmpl->assign('encryption_enabled',$enabled);
|
2012-02-23 01:20:46 +04:00
|
|
|
|
2012-05-01 22:03:41 +04:00
|
|
|
OCP\Util::addscript('files_encryption','settings');
|
|
|
|
OCP\Util::addscript('core','multiselect');
|
2012-02-23 01:20:46 +04:00
|
|
|
|
|
|
|
return $tmpl->fetchPage();
|