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>
|
2011-10-01 11:54:52 +04:00
|
|
|
* Copyright (c) 2011 Georg Ehrke <ownclouddev at georgswebsite dot de>
|
2011-09-24 00:59:24 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2011-10-01 11:54:52 +04:00
|
|
|
OC_UTIL::addScript('', 'jquery.multiselect');
|
|
|
|
OC_UTIL::addStyle('', 'jquery.multiselect');
|
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>
|
2011-10-01 11:54:52 +04:00
|
|
|
<select style="display: none;" 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-10-02 17:51:24 +04:00
|
|
|
</select>
|
|
|
|
<label for="timeformat"><strong><?php echo $l->t('Timeformat');?></strong></label>
|
|
|
|
<select style="display: none;" id="timeformat" title="<?php echo "timeformat"; ?>" name="timeformat">
|
|
|
|
<option value="24" id="24h"><?php echo $l->t("24h"); ?></option>
|
|
|
|
<option value="ampm" id="ampm"><?php echo $l->t("12h"); ?></option>
|
|
|
|
</select><br />
|
2011-10-01 11:54:52 +04:00
|
|
|
<label for="firstdayofweek"><strong><?php echo $l->t('First day of the week');?></strong></label>
|
|
|
|
<select style="display: none;" id="firstdayofweek" name="firstdayofweek">
|
|
|
|
<?php
|
|
|
|
$weekdays = array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
|
|
|
|
for($i = 0;$i <= 6;$i++){
|
|
|
|
echo '<option value="'.$i.'" id="select_'.$i.'">' . $l->t($weekdays[$i]) . '</option>';
|
|
|
|
}
|
|
|
|
?>
|
2011-10-02 17:51:24 +04:00
|
|
|
</select><br />
|
2011-10-01 11:54:52 +04:00
|
|
|
<label for="weekend"><strong><?php echo $l->t('Days of weekend');?></strong></label>
|
2011-10-02 17:51:24 +04:00
|
|
|
<select id="weekend" name="weekend[]" style="width: 50%;" multiple="multiple" title="<?php echo $l->t("Weekend"); ?>">
|
2011-10-01 11:54:52 +04:00
|
|
|
<?php
|
|
|
|
$weekdays = array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
|
|
|
|
for($i = 0;$i <= 6;$i++){
|
|
|
|
echo '<option value="'.$weekdays[$i].'" id="selectweekend_' . $weekdays[$i] . '">' . $l->t($weekdays[$i]) . '</option>';
|
|
|
|
}
|
|
|
|
?>
|
2011-10-02 17:51:24 +04:00
|
|
|
</select><br />
|
2011-10-02 00:53:18 +04:00
|
|
|
<label for="duration"><strong><?php echo $l->t('Event duration');?></strong></label>
|
2011-10-02 18:06:30 +04:00
|
|
|
<input type="text" maxlength="3" size="3" style="width: 2em;" id="duration" name="duration" /> <?php echo $l->t("Minutes");?>
|
2011-09-28 18:05:01 +04:00
|
|
|
<br />
|
2011-10-02 17:55:23 +04:00
|
|
|
<?php echo $l->t('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>
|