blob: 11297668cd417e39ee464e07cb6906799d0a0d9b (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
// Check if we are a user
OCP\User::checkLoggedIn();
$somesetting = OCP\Config::getSystemValue( "somesetting", '' );
OCP\App::setActiveNavigationEntry( 'grauphel' );
$tmpl = new OCP\Template( 'grauphel', 'main', 'user' );
$tmpl->assign( 'somesetting', $somesetting );
$tmpl->printPage();
|