server/apps/files_sharing/settings.php
Frank Karlitschek ff66600bc0 port appconfig
2012-05-02 14:11:29 +02:00

9 lines
No EOL
264 B
PHP
Executable file

<?php
OCP\User::checkAdminUser();
OCP\Util::addscript('files_sharing', 'settings');
$tmpl = new OC_Template('files_sharing', 'settings');
$tmpl->assign('allowResharing', OCP\Config::getAppValue('files_sharing', 'resharing', 'yes'));
return $tmpl->fetchPage();
?>