2000-10-12 19:36:47 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - Calendar *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-11-16 08:56:58 +01:00
|
|
|
$phpgw_info["flags"] = array("currentapp" => "calendar", "enable_calendar_class" => True,
|
|
|
|
"enable_nextmatchs_class" => True,
|
|
|
|
"noheader" => True, "nonavbar" => True,
|
|
|
|
"nocalendarheader" => True, "nocalendarfooter" => True);
|
2000-10-12 19:36:47 +02:00
|
|
|
include("../header.inc.php");
|
|
|
|
|
|
|
|
if ($submit) {
|
2000-11-11 19:51:14 +01:00
|
|
|
$phpgw->preferences->preferences_delete("byapp",$phpgw_info["user"]["account_id"],"calendar");
|
2000-10-12 19:36:47 +02:00
|
|
|
|
2000-11-11 19:51:14 +01:00
|
|
|
$phpgw->preferences->preferences_add($phpgw_info["user"]["account_id"],"weekdaystarts","calendar");
|
|
|
|
$phpgw->preferences->preferences_add($phpgw_info["user"]["account_id"],"workdaystarts","calendar");
|
|
|
|
$phpgw->preferences->preferences_add($phpgw_info["user"]["account_id"],"workdayends","calendar");
|
2000-10-12 19:36:47 +02:00
|
|
|
if ($mainscreen_showevents) {
|
2000-11-11 19:51:14 +01:00
|
|
|
$phpgw->preferences->preferences_add($phpgw_info["user"]["account_id"],"mainscreen_showevents","calendar");
|
2000-10-12 19:36:47 +02:00
|
|
|
}
|
|
|
|
Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/preferences/index.php"));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$phpgw->common->phpgw_header();
|
|
|
|
$phpgw->common->navbar();
|
|
|
|
|
|
|
|
if ($totalerrors) {
|
|
|
|
echo "<p><center>" . $phpgw->common->error_list($errors) . "</center>";
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "<p><b>" . lang("Calendar preferences") . ":" . "</b><hr><p>";
|
2000-11-11 19:51:14 +01:00
|
|
|
|
2000-10-12 19:36:47 +02:00
|
|
|
?>
|
|
|
|
<form action="<?php echo $phpgw->link(); ?>" method="POST">
|
|
|
|
<table border="0" align="center" width="50%">
|
|
|
|
<tr bgcolor="<?php echo $phpgw_info["theme"]["th_bg"]; ?>">
|
|
|
|
<td colspan="2"> </td>
|
|
|
|
</tr>
|
|
|
|
<?php $tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color); ?>
|
|
|
|
<tr bgcolor="<?php echo $tr_color; ?>">
|
|
|
|
<td><?php echo lang("show high priority events on main screen"); ?> ?</td>
|
2000-11-11 19:51:14 +01:00
|
|
|
<td align="center"><input type="checkbox" name="mainscreen_showevents" value="Y" <?php
|
|
|
|
if ($phpgw_info["user"]["preferences"]["calendar"]["mainscreen_showevents"] == "Y") echo " checked";
|
|
|
|
?>>
|
|
|
|
</td>
|
2000-10-12 19:36:47 +02:00
|
|
|
</tr>
|
|
|
|
|
|
|
|
<?php
|
2000-10-12 20:18:03 +02:00
|
|
|
$t_weekday[$phpgw_info["user"]["preferences"]["calendar"]["weekdaystarts"]] = " selected";
|
2000-10-12 19:36:47 +02:00
|
|
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
|
|
|
?>
|
|
|
|
<tr bgcolor="<?php echo $tr_color; ?>">
|
|
|
|
<td><?php echo lang("weekday starts on"); ?></td>
|
|
|
|
<td align="center">
|
|
|
|
<select name="weekdaystarts">
|
2000-11-14 07:17:16 +01:00
|
|
|
<option value="Monday"<?php echo $t_weekday["Monday"]; ?>><?php echo lang("Monday"); ?></option>
|
|
|
|
<option value="Sunday"<?php echo $t_weekday["Sunday"]; ?>><?php echo lang("Sunday"); ?></option>
|
2000-10-12 19:36:47 +02:00
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
<?php
|
2000-10-12 20:18:03 +02:00
|
|
|
$t_workdaystarts[$phpgw_info["user"]["preferences"]["calendar"]["workdaystarts"]] = " selected";
|
2000-10-12 19:36:47 +02:00
|
|
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
|
|
|
?>
|
|
|
|
<tr bgcolor="<?php echo $tr_color; ?>">
|
|
|
|
<td><?php echo lang("work day starts on"); ?></td>
|
|
|
|
<td align="center">
|
|
|
|
<select name="workdaystarts">
|
|
|
|
<?php
|
|
|
|
for ($i=0; $i<24; $i++)
|
|
|
|
echo "<option value=\"$i\"" . $t_workdaystarts[$i] . ">"
|
|
|
|
. $phpgw->common->formattime($i+1,"00") . "</option>";
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
2000-10-12 20:18:03 +02:00
|
|
|
$t_workdayends[$phpgw_info["user"]["preferences"]["calendar"]["workdayends"]] = " selected";
|
2000-10-12 19:36:47 +02:00
|
|
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
|
|
|
?>
|
|
|
|
<tr bgcolor="<?php echo $tr_color; ?>">
|
|
|
|
<td><?php echo lang("work day ends on"); ?></td>
|
|
|
|
<td align="center">
|
|
|
|
<select name="workdayends">
|
|
|
|
<?php
|
|
|
|
for ($i=0; $i<24; $i++) {
|
|
|
|
echo "<option value=\"$i\"" . $t_workdayends[$i] . ">"
|
|
|
|
. $phpgw->common->formattime($i+1,"00") . "</option>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr><td align="center"><input type="submit" name="submit" value="<?php echo lang("submit"); ?>"></td></tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
|
2000-11-11 19:51:14 +01:00
|
|
|
<?php include($phpgw_info["server"]["api_dir"] . "/footer.inc.php"); ?>
|