nextcloud/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-07 01:00:36 +04:00
$tmpl = new OCP\Template( 'files_encryption', 'settings');
2012-10-24 01:01:10 +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-11-04 14:10:46 +04:00
OCP\Util::addscript('files_encryption', 'settings');
OCP\Util::addscript('core', 'multiselect');
return $tmpl->fetchPage();