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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/calendar/templates/settings.php')
-rwxr-xr-xapps/calendar/templates/settings.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/calendar/templates/settings.php b/apps/calendar/templates/settings.php
new file mode 100755
index 00000000000..0b0a4f1c265
--- /dev/null
+++ b/apps/calendar/templates/settings.php
@@ -0,0 +1,19 @@
+<form id="calendar">
+ <fieldset class="personalblock">
+ <label for="timezone"><strong><?php echo $l->t('Timezone');?></strong></label>
+ <select id="timezone" name="timezone">
+ <?php 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 id="timezoneerror"></span>
+ </fieldset>
+</form>