nextcloud/apps/files_sharing/settings.php

9 lines
261 B
PHP
Raw Normal View History

<?php
OC_Util::checkAdminUser();
OC_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();
?>