2011-09-11 18:45:58 +04:00
|
|
|
<?php
|
2011-09-24 00:59:24 +04:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2011-09-11 18:45:58 +04:00
|
|
|
?>
|
2011-08-31 22:20:46 +04:00
|
|
|
<form id="calendar">
|
|
|
|
<fieldset class="personalblock">
|
|
|
|
<label for="timezone"><strong><?php echo $l->t('Timezone');?></strong></label>
|
|
|
|
<select id="timezone" name="timezone">
|
2011-09-10 13:58:08 +04:00
|
|
|
<?php
|
|
|
|
$continent = '';
|
|
|
|
foreach($_['timezones'] as $timezone):
|
2011-08-31 22:20:46 +04:00
|
|
|
if ( preg_match( '/^(America|Antartica|Arctic|Asia|Atlantic|Europe|Indian|Pacific)\//', $timezone ) ):
|
|
|
|
$ex=explode('/', $timezone, 2);//obtain continent,city
|
|
|
|
if ($continent!=$ex[0]):
|
|
|
|
if ($continent!="") echo '</optgroup>';
|
|
|
|
echo '<optgroup label="'.$ex[0].'">';
|
|
|
|
endif;
|
|
|
|
$city=$ex[1];
|
|
|
|
$continent=$ex[0];
|
|
|
|
echo '<option value="'.$timezone.'"'.($_['timezone'] == $timezone?' selected="selected"':'').'>'.$city.'</option>';
|
|
|
|
endif;
|
|
|
|
endforeach;?>
|
2011-09-11 19:20:23 +04:00
|
|
|
</select><span class="msg"></span>
|
2011-09-28 18:05:01 +04:00
|
|
|
<br />
|
2011-09-29 00:11:47 +04:00
|
|
|
Calendar CalDAV syncing address:
|
2011-09-28 18:05:01 +04:00
|
|
|
<?php echo OC_Helper::linkTo('apps/calendar', 'caldav.php', null, true); ?><br />
|
2011-08-31 22:20:46 +04:00
|
|
|
</fieldset>
|
|
|
|
</form>
|