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-09-11 18:45:58 +04:00
?>
2011-08-31 22:20:46 +04:00
< form id = " calendar " >
< fieldset class = " personalblock " >
2012-02-02 21:36:37 +04:00
< strong >< ? php echo $l -> t ( 'Calendar' ); ?> </strong>
2011-10-06 03:31:05 +04:00
< table class = " nostyle " >
< tr >< td >< label for = " timezone " class = " bold " >< ? php echo $l -> t ( 'Timezone' ); ?> </label></td><td><select style="display: none;" id="timezone" name="timezone">
2011-09-10 13:58:08 +04:00
< ? php
2011-10-06 03:31:05 +04:00
$continent = '' ;
foreach ( $_ [ 'timezones' ] as $timezone ) :
$ex = explode ( '/' , $timezone , 2 ); //obtain continent,city
if ( ! isset ( $ex [ 1 ])) {
$ex [ 1 ] = $ex [ 0 ];
$ex [ 0 ] = " Other " ;
}
if ( $continent != $ex [ 0 ]) :
if ( $continent != " " ) echo '</optgroup>' ;
echo '<optgroup label="' . $ex [ 0 ] . '">' ;
endif ;
2011-10-07 00:40:11 +04:00
$city = strtr ( $ex [ 1 ], '_' , ' ' );
2011-10-06 03:31:05 +04:00
$continent = $ex [ 0 ];
echo '<option value="' . $timezone . '"' . ( $_ [ 'timezone' ] == $timezone ? ' selected="selected"' : '' ) . '>' . $city . '</option>' ;
2011-08-31 22:20:46 +04:00
endforeach ; ?>
2012-01-02 14:35:50 +04:00
</ select >< input type = " checkbox " name = " timezonedetection " id = " timezonedetection " >< label for = " timezonedetection " >< ? php echo $l -> t ( 'Check always for changes of the timezone' ); ?> </label></td></tr>
2011-10-04 21:37:26 +04:00
2011-10-06 03:31:05 +04:00
< tr >< td >< label for = " timeformat " class = " bold " >< ? php echo $l -> t ( 'Timeformat' ); ?> </label></td><td>
< 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 >
</ td ></ tr >
2011-10-04 21:37:26 +04:00
2012-02-27 00:23:20 +04:00
< tr >< td >< label for = " firstday " class = " bold " >< ? php echo $l -> t ( 'First day of the week' ); ?> </label></td><td>
< select style = " display: none; " id = " firstday " title = " <?php echo " First day " ; ?> " name = " firstday " >
< option value = " mo " id = " mo " >< ? php echo $l -> t ( " Monday " ); ?> </option>
< option value = " su " id = " su " >< ? php echo $l -> t ( " Sunday " ); ?> </option>
</ select >
</ td ></ tr >
2011-10-06 03:31:05 +04:00
</ table >
2011-10-04 21:37:26 +04:00
2011-10-06 03:31:05 +04:00
< ? php echo $l -> t ( 'Calendar CalDAV syncing address:' ); ?>
2012-02-16 22:45:00 +04:00
< ? php echo OC_Helper :: linkToAbsolute ( 'calendar' , 'caldav.php' ); ?> <br />
2011-08-31 22:20:46 +04:00
</ fieldset >
</ form >