17 lines
492 B
PHP
Executable File
17 lines
492 B
PHP
Executable File
<?php
|
|
/**
|
|
* Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl>
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
$tmpl = new OC_Template( 'calendar', 'settings');
|
|
$timezone=OC_Preferences::getValue(OCP\USER::getUser(),'calendar','timezone','');
|
|
$tmpl->assign('timezone',$timezone);
|
|
$tmpl->assign('timezones',DateTimeZone::listIdentifiers());
|
|
|
|
OCP\Util::addscript('calendar','settings');
|
|
|
|
return $tmpl->fetchPage();
|