server/apps/files_encryption/settings.php

19 lines
697 B
PHP
Raw Normal View History

<?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-10-23 21:01:10 +00:00
$blackList=explode(',', OCP\Config::getAppValue('files_encryption', 'type_blacklist', 'jpg,png,jpeg,avi,mpg,mpeg,mkv,mp3,oga,ogv,ogg'));
2012-11-04 10:10:46 +00:00
$enabled=(OCP\Config::getAppValue('files_encryption', 'enable_encryption', 'true')=='true');
2012-11-02 18:53:02 +00:00
$tmpl->assign('blacklist', $blackList);
$tmpl->assign('encryption_enabled', $enabled);
2012-11-04 10:10:46 +00:00
OCP\Util::addscript('files_encryption', 'settings');
OCP\Util::addscript('core', 'multiselect');
return $tmpl->fetchPage();