2012-02-22 21:20:46 +00: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-06 21:00:36 +00:00
|
|
|
$tmpl = new OCP\Template( 'files_encryption', 'settings');
|
2012-05-02 12:11:29 +00: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-22 21:20:46 +00:00
|
|
|
$tmpl->assign('blacklist',$blackList);
|
2012-04-19 14:36:07 +00:00
|
|
|
$tmpl->assign('encryption_enabled',$enabled);
|
2012-02-22 21:20:46 +00:00
|
|
|
|
2012-05-01 18:03:41 +00:00
|
|
|
OCP\Util::addscript('files_encryption','settings');
|
|
|
|
OCP\Util::addscript('core','multiselect');
|
2012-02-22 21:20:46 +00:00
|
|
|
|
|
|
|
return $tmpl->fetchPage();
|