37 lines
1.5 KiB
PHP
37 lines
1.5 KiB
PHP
<?php
|
|
/*************************************************
|
|
* ownCloud - Calendar Plugin *
|
|
* *
|
|
* (c) Copyright 2011 Bart Visscher *
|
|
* License: GNU AFFERO GENERAL PUBLIC LICENSE *
|
|
* *
|
|
* If you are not able to view the License, *
|
|
* <http://www.gnu.org/licenses/> *
|
|
* please write to the Free Software Foundation. *
|
|
* Address: *
|
|
* 59 Temple Place, Suite 330, Boston, *
|
|
* MA 02111-1307 USA *
|
|
*************************************************/
|
|
?>
|
|
<form id="calendar">
|
|
<fieldset class="personalblock">
|
|
<label for="timezone"><strong><?php echo $l->t('Timezone');?></strong></label>
|
|
<select id="timezone" name="timezone">
|
|
<?php
|
|
$continent = '';
|
|
foreach($_['timezones'] as $timezone):
|
|
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;?>
|
|
</select><span class="msg"></span>
|
|
</fieldset>
|
|
</form>
|