nextcloud/apps/files_sharing/settings.php

9 lines
262 B
PHP
Raw Normal View History

<?php
OC_Util::checkAdminUser();
2012-05-01 22:03:41 +04:00
OCP\Util::addscript('files_sharing', 'settings');
$tmpl = new OC_Template('files_sharing', 'settings');
$tmpl->assign('allowResharing', OC_Appconfig::getValue('files_sharing', 'resharing', 'yes'));
return $tmpl->fetchPage();
?>