Welcome to mirror list, hosted at ThFree Co, Russian Federation.

settings.php « apptemplate - github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04aaca65129082640152fdc0bcd6d78e35a836ef (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

OCP\User::checkAdminUser();

OCP\Util::addScript( "apptemplate", "admin" );

$tmpl = new OCP\Template( 'apptemplate', 'settings');

$tmpl->assign('url', OCP\Config::getSystemValue( "somesetting", '' ));

return $tmpl->fetchPage();