egroupware_official/calendar/edit_entry.php

419 lines
13 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?phpphp_track_vars?>
<?php
/**************************************************************************\
* phpGroupWare - Calendar *
* http://www.phpgroupware.org *
* Based on Webcalendar by Craig Knudsen <cknudsen@radix.net> *
* http://www.radix.net/~cknudsen *
* -------------------------------------------- *
* 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$ */
$phpgw_info["flags"]["currentapp"] = "calendar";
2000-08-18 05:24:22 +02:00
include("../header.inc.php");
if ($id > 0) {
$can_edit = false;
$phpgw->db->query("SELECT cal_id FROM webcal_entry_user WHERE cal_login="
. "'" . $phpgw_info["user"]["userid"] . "' AND cal_id = $id");
2000-08-18 05:24:22 +02:00
$phpgw->db->next_record();
if ($phpgw->db->f("cal_id") > 0)
$can_edit = true;
$phpgw->db->query("SELECT cal_create_by, cal_date, cal_time, cal_mod_date, "
. "cal_mod_time, cal_duration, cal_priority, cal_type, "
. "cal_access, cal_name, cal_description FROM webcal_entry "
. "WHERE cal_id=$id");
2000-08-18 05:24:22 +02:00
$phpgw->db->next_record();
$year = (int)($phpgw->db->f(1) / 10000);
$month = ($phpgw->db->f(1) / 100) % 100;
$day = $phpgw->db->f(1) % 100;
$time = $phpgw->db->f(2);
if ($time > 0) {
2000-09-15 02:14:42 +02:00
$hour = intval($time / 10000);
2000-08-18 05:24:22 +02:00
$minute = ($time / 100) % 100;
}
$duration = $phpgw->db->f(5);
$priority = $phpgw->db->f(6);
$type = $phpgw->db->f(7);
$access = $phpgw->db->f(8);
$name = $phpgw->db->f(9);
$description = $phpgw->db->f(10);
2000-09-05 06:05:39 +02:00
$name = stripslashes($name);
$name = htmlspecialchars($name);
$description = stripslashes($description);
$description = htmlspecialchars($description);
2000-08-18 05:24:22 +02:00
$phpgw->db->query("SELECT cal_login FROM webcal_entry_user WHERE cal_id=$id");
while ($phpgw->db->next_record()) {
$participants[$phpgw->db->f("cal_login")] = 1;
}
$phpgw->db->query("select * from webcal_entry_repeats where cal_id='$id"
. "'");
$phpgw->db->next_record();
$rpt_type = $phpgw->db->f("cal_type");
if ($phpgw->db->f("cal_end"))
$rpt_end = date_to_epoch($phpgw->db->f("cal_end"));
else
$rpt_end = 0;
$rpt_freq = $phpgw->db->f("cal_frequency");
$rpt_days = $phpgw->db->f("cal_days");
$rpt_sun = (substr($rpt_days,0,1)=='y');
$rpt_mon = (substr($rpt_days,1,1)=='y');
$rpt_tue = (substr($rpt_days,2,1)=='y');
$rpt_wed = (substr($rpt_days,3,1)=='y');
$rpt_thu = (substr($rpt_days,4,1)=='y');
$rpt_fri = (substr($rpt_days,5,1)=='y');
$rpt_sat = (substr($rpt_days,6,1)=='y');
} else {
$can_edit = true;
}
if ($year)
$thisyear = $year;
if ($month)
$thismonth = $month;
if (! $rpt_type)
$rpt_type = "none";
?>
<SCRIPT LANGUAGE="JavaScript">
// do a little form verifying
function validate_and_submit() {
if (document.addform.name.value == "") {
2000-09-07 22:49:55 +02:00
alert("<?php echo lang("You have not entered a\\nBrief Description"); ?>.");
2000-08-18 05:24:22 +02:00
return false;
}
h = parseInt(document.addform.hour.value);
m = parseInt(document.addform.minute.value);
if (h > 23 || m > 59) {
2000-09-07 22:49:55 +02:00
alert ("<?php echo lang("You have not entered a\\nvalid time of day."); ?>");
2000-08-18 05:24:22 +02:00
return false;
}
// would be nice to also check date to not allow Feb 31, etc...
document.addform.submit();
return true;
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="<?php echo $BGCOLOR; ?>">
<H2><FONT COLOR="<?php echo $H2COLOR;?>"><?php
if ($id)
2000-09-07 22:49:55 +02:00
echo lang("Calendar - Edit");
2000-08-18 05:24:22 +02:00
else
2000-09-07 22:49:55 +02:00
echo lang("Calendar - Add");
2000-08-18 05:24:22 +02:00
?></FONT></H2>
<?php
if ($can_edit) {
?>
<FORM ACTION="<?php echo $phpgw->link("edit_entry_handler.php"); ?>" METHOD="POST" name="addform">
2000-08-18 05:24:22 +02:00
<?php if ($id) echo "<INPUT TYPE=\"hidden\" NAME=\"id\" VALUE=\"$id\">\n"; ?>
<TABLE BORDER=0>
<TR>
2000-09-07 22:49:55 +02:00
<TD><B><?php echo lang("Brief Description"); ?>:</B></TD>
2000-08-18 05:24:22 +02:00
<TD>
2000-09-05 06:05:39 +02:00
<INPUT NAME="name" SIZE=25 VALUE="<?php echo ($name); ?>">
2000-08-18 05:24:22 +02:00
</TD>
</TR>
<TR>
2000-09-07 22:49:55 +02:00
<TD VALIGN="top"><B><?php echo lang("Full Description"); ?>:</B></TD>
2000-08-18 05:24:22 +02:00
<TD>
<TEXTAREA NAME="description" ROWS=5 COLS=40 WRAP="virtual"><?php
2000-09-05 06:05:39 +02:00
echo ($description); ?></TEXTAREA>
2000-08-18 05:24:22 +02:00
</TD>
</TR>
<TR>
2000-09-07 22:49:55 +02:00
<TD><B><?php echo lang("Date"); ?>:</B></TD>
2000-08-18 05:24:22 +02:00
<TD>
<?php
$day_html = "<SELECT NAME=\"day\">";
if ($day == 0)
$day = date("d");
for ($i = 1; $i <= 31; $i++)
$day_html .= "<OPTION value=\"$i\"" . ($i == $day ? " SELECTED" : "") . ">$i"
. "</option>\n";
$day_html .= "</select>";
$month_html = "<SELECT NAME=\"month\">";
if ($month == 0)
$month = date("m");
if ($year == 0)
$year = date("Y");
for ($i = 1; $i <= 12; $i++) {
2000-09-07 22:49:55 +02:00
$m = lang(date("F", mktime(0,0,0,$i,1,$year)));
2000-08-18 05:24:22 +02:00
$month_html .= "<OPTION VALUE=\"$i\"" . ($i == $month ? " SELECTED" : "") . ">$m"
. "</option>\n";
}
$month_html .= "</select>";
$year_html = "<SELECT NAME=\"year\">";
for ($i = -1; $i < 5; $i++) {
$y = date("Y") + $i;
$year_html .= "<OPTION VALUE=\"$y\"" . ($y == $year ? " SELECTED" : "") . ">$y"
. "</option>\n";
}
$year_html .= "</select>";
2000-09-02 15:44:06 +02:00
echo $phpgw->common->dateformatorder($year_html,$month_html,$day_html);
2000-08-18 05:24:22 +02:00
?>
</TD>
</TR>
<TR>
2000-09-07 22:49:55 +02:00
<TD><B><?php echo lang("Time"); ?>:</B></TD>
2000-08-18 05:24:22 +02:00
<?php
$h12 = $hour;
$amsel = "CHECKED"; $pmsel = "";
if ($phpgw_info["user"]["preferences"]["timeformat"] == "12") {
if ($h12 < 12) {
$amsel = "CHECKED"; $pmsel = "";
} else {
$amsel = ""; $pmsel = "CHECKED";
}
$h12 %= 12;
if ($h12 == 0 && $hour) $h12 = 12;
if ($h12 == 0 && ! $hour) $h12 = "";
}
?>
<TD>
<INPUT NAME="hour" SIZE=2 VALUE="<?php
echo $h12;?>" MAXLENGTH=2>:<INPUT NAME="minute" SIZE=2 VALUE="<?php
if ($hour > 0) printf ("%02d", $minute); ?>" MAXLENGTH=2>
<?php
if ($phpgw_info["user"]["preferences"]["timeformat"] == "12") {
echo "<INPUT TYPE=radio NAME=ampm VALUE=\"am\" $amsel>am\n";
echo "<INPUT TYPE=radio NAME=ampm VALUE=\"pm\" $pmsel>pm\n";
}
?>
</TD></TR>
<TR>
2000-09-07 22:49:55 +02:00
<TD><B><?php echo lang("Duration"); ?>:</B></TD>
2000-08-18 05:24:22 +02:00
<TD><INPUT NAME="duration" SIZE=3 VALUE="<?php
2000-09-07 22:49:55 +02:00
echo $duration;?>"> <?php echo lang("minutes"); ?></TD>
2000-08-18 05:24:22 +02:00
</TR>
<TR>
2000-09-07 22:49:55 +02:00
<TD><B><?php echo lang("Priority"); ?>:</B></TD>
2000-08-18 05:24:22 +02:00
<TD><SELECT NAME="priority">
2000-09-07 22:49:55 +02:00
<OPTION VALUE="1"<?php if ($priority == 1) echo " SELECTED";?>><?php echo lang("Low"); ?> </option>
<OPTION VALUE="2"<?php if ($priority == 2 || $priority == 0 ) echo " SELECTED";?>><?php echo lang("Medium"); ?></option>
<OPTION VALUE="3"<?php if ($priority == 3) echo " SELECTED";?>><?php echo lang("High"); ?></option>
2000-08-18 05:24:22 +02:00
</SELECT></TD>
</TR>
<TR>
2000-09-07 22:49:55 +02:00
<TD><B><?php echo lang("Access"); ?>:</B></TD>
2000-08-18 05:24:22 +02:00
<TD><SELECT NAME="access">
<OPTION VALUE="private"<?php
2000-09-07 22:49:55 +02:00
if ($access == "private" || ! $id) echo " SELECTED";?>><?php echo lang("Private"); ?></option>
2000-08-18 05:24:22 +02:00
<OPTION VALUE="group"<?php
2000-09-07 22:49:55 +02:00
if ($access == "public" || strlen($access)) echo " SELECTED";?>><?php echo lang("Group Public"); ?></option>
2000-08-18 05:24:22 +02:00
<OPTION VALUE="public"<?php
2000-09-07 22:49:55 +02:00
if ($access == "public") echo " SELECTED"; ?>><?php echo lang("Global Public"); ?></option>
2000-08-18 05:24:22 +02:00
</SELECT>
</TD>
</tr>
<tr>
2000-09-07 22:49:55 +02:00
<TD><B><?php echo lang("group access"); ?>:</B></TD>
2000-08-18 05:24:22 +02:00
<TD><SELECT NAME="n_groups[]" multiple size="5">
<?php
if ($id > 0) {
$phpgw->db->query("select groups from webcal_entry_groups where cal_id='$id'");
$phpgw->db->next_record();
$db_groups = $phpgw->db->f("groups");
}
2000-09-02 15:44:06 +02:00
$user_groups = $phpgw->accounts->read_group_names();
2000-08-18 05:24:22 +02:00
for ($i=0;$i<count($user_groups);$i++) {
echo "<option value=\"" . $user_groups[$i][0] . "\"";
if (ereg(",".$user_groups[$i][0].",",$db_groups))
echo " selected";
echo ">" . $user_groups[$i][1] . "</option>\n";
}
?></SELECT></TD>
</TR>
<?php
$phpgw->db->query("select account_lid,account_lastname, account_firstname from accounts where "
. "account_status !='L' and account_lid != '" . $phpgw_info["user"]["userid"] . "' and "
. "account_permissions like '%:calendar:%' order by account_lastname,account_firstname,account_lid");
2000-08-18 05:24:22 +02:00
if ($phpgw->db->num_rows() > 50)
$size = 15;
else if ($phpgw->db->num_rows() > 5)
$size = 5;
else
$size = $phpgw->db->num_rows();
2000-09-07 22:49:55 +02:00
echo "<TR><TD VALIGN=\"top\"><B>" . lang("Participants") . ":</B></TD>"
2000-08-18 05:24:22 +02:00
. "<TD>\n<SELECT NAME=\"participants[]\" multiple size=\"$size\">\n";
while ($phpgw->db->next_record()) {
echo "<option value=\"" . $phpgw->db->f("loginid") . "\"";
if (($participants[$phpgw->db->f("account_lid")]
|| $phpgw->db->f("account_lid") == $loginid))
2000-08-18 05:24:22 +02:00
echo " selected";
// Change this to use accounts->display_full_name()
if (! $phpgw->db->f("account_lastname"))
echo ">" . $phpgw->db->f("account_loginid");
2000-08-18 05:24:22 +02:00
else
echo ">" . $phpgw->db->f("account_lastname") . ", " . $phpgw->db->f("account_firstname");
2000-08-18 05:24:22 +02:00
echo "</option>\n";
}
echo "<input type=\"hidden\" name=\"participants[]\" value=\""
. $phpgw_info["user"]["userid"] ."\">"
2000-08-18 05:24:22 +02:00
. "</select></td></tr>\n";
?>
<tr>
2000-09-07 22:49:55 +02:00
<td><b><?php echo lang("Repeat type"); ?>:</b></td>
2000-08-18 05:24:22 +02:00
<td><select name="rpt_type">
<?php
echo "<option value=\"none\"" . (strcmp($rpt_type,'none')==0?"selected":"") . ">"
2000-09-07 22:49:55 +02:00
. lang("None") . "</option>";
2000-08-18 05:24:22 +02:00
echo "<option value=\"daily\"" . (strcmp($rpt_type,'daily')==0?"selected":"") . ">"
2000-09-07 22:49:55 +02:00
. lang("Daily") . "</option>";
2000-08-18 05:24:22 +02:00
echo "<option value=\"weekly\"" . (strcmp($rpt_type,'weekly')==0?"selected":"") . ">"
2000-09-07 22:49:55 +02:00
. lang("Weekly") . "</option>";
2000-08-18 05:24:22 +02:00
echo "<option value=\"monthlyByDay\"".(strcmp($rpt_type,'monthlyByDay')==0?"selected":"")
2000-09-07 22:49:55 +02:00
. ">" . lang("Monthly (by day)") . "</option>";
2000-08-18 05:24:22 +02:00
echo "<option value=\"monthlyByDate\"".(strcmp($rpt_type,'monthlyByDate')==0?"checked":"")
2000-09-07 22:49:55 +02:00
. "> " . lang("Monthly (by date)") . "</option>";
2000-08-18 05:24:22 +02:00
echo "<option value=\"yearly\"" . (strcmp($rpt_type,'yearly')==0?"checked":"") . ">"
2000-09-07 22:49:55 +02:00
. lang("Yearly") . "</option>";
2000-08-18 05:24:22 +02:00
?>
</select>
</td>
<tr>
2000-09-07 22:49:55 +02:00
<td><b><?php echo lang("Repeat End date"); ?>:</b></td>
2000-08-18 05:24:22 +02:00
<td><input type=checkbox name=rpt_end_use value=y <?php
2000-09-07 22:49:55 +02:00
echo ($rpt_end?"checked":""); ?>> <?php echo lang("Use End date"); ?>
2000-08-18 05:24:22 +02:00
<?php
if ($rpt_end) {
$rpt_day = date("d",$rpt_end);
$rpt_month = date("m",$rpt_end);
$rpt_year = date("Y",$rpt_end);
} else {
$rpt_day = $day+1;
$rpt_month = $month;
$rpt_year = $year;
}
$day_html = "<SELECT NAME=\"rpt_day\">";
for ($i = 1; $i <= 31; $i++) {
$day_html .= "<OPTION value=\"$i\"" . ($i == $rpt_day ? " SELECTED" : "")
. ">$i</option>\n";
}
$day_html .= "</select>";
$month_html = "<select name=\"rpt_month\">";
for ($i = 1; $i <= 12; $i++) {
2000-09-07 22:49:55 +02:00
$m = lang(date("F", mktime(0,0,0,$i,1,$rpt_year)));
2000-08-18 05:24:22 +02:00
$month_html .= "<OPTION VALUE=\"$i\"" . ($i == $rpt_month ? " SELECTED" : "")
. ">$m</option>\n";
}
$month_html .= "</select>";
$year_html = "<select name=\"rpt_year\">";
for ($i = -1; $i < 5; $i++) {
$y = date("Y") + $i;
$year_html .= "<OPTION VALUE=\"$y\"" . ($y == $rpt_year ? " SELECTED" : "")
. ">$y</option>\n";
}
$year_html .= "</select>";
2000-09-02 15:44:06 +02:00
echo $phpgw->common->dateformatorder($year_html,$month_html,$day_html);
2000-08-18 05:24:22 +02:00
?>
</td>
</tr>
<tr>
2000-09-07 22:49:55 +02:00
<td><b><?php echo lang("Repeat day"); ?>: </b><?php echo lang("(for Weekly)"); ?></td>
2000-08-18 05:24:22 +02:00
<td><?php
echo "<input type=checkbox name=rpt_sun value=y "
2000-09-07 22:49:55 +02:00
. ($rpt_sun?"checked":"") . "> " . lang("Sunday");
2000-08-18 05:24:22 +02:00
echo "<input type=checkbox name=rpt_mon value=y "
2000-09-07 22:49:55 +02:00
. ($rpt_mon?"checked":"") . "> " . lang("Monday");
2000-08-18 05:24:22 +02:00
echo "<input type=checkbox name=rpt_tue value=y "
2000-09-07 22:49:55 +02:00
. ($rpt_tue?"checked":"") . "> " . lang("Tuesday");
2000-08-18 05:24:22 +02:00
echo "<input type=checkbox name=rpt_wed value=y "
2000-09-07 22:49:55 +02:00
. ($rpt_wed?"checked":"") . "> " . lang("Wednesday");
2000-08-18 05:24:22 +02:00
echo "<input type=checkbox name=rpt_thu value=y "
2000-09-07 22:49:55 +02:00
. ($rpt_thu?"checked":"") . "> " . lang("Thursday");
2000-08-18 05:24:22 +02:00
echo "<input type=checkbox name=rpt_fri value=y "
2000-09-07 22:49:55 +02:00
. ($rpt_fri?"checked":"") . "> " . lang("Friday");
2000-08-18 05:24:22 +02:00
echo "<input type=checkbox name=rpt_sat value=y "
2000-09-07 22:49:55 +02:00
. ($rpt_sat?"checked":"") . "> " . lang("Saturday");
2000-08-18 05:24:22 +02:00
?></td>
</tr>
<tr>
2000-09-07 22:49:55 +02:00
<td><b><?php echo lang("Frequency"); ?>: </b></td>
2000-08-18 05:24:22 +02:00
<td>
<input name="rpt_freq" size="4" maxlength="4" value="<?php
echo $rpt_freq; ?>">
</td>
</tr>
</TABLE>
<SCRIPT LANGUAGE="JavaScript">
2000-09-07 22:49:55 +02:00
document.writeln ( '<INPUT TYPE="button" VALUE="<?php echo lang("Submit"); ?>" ONCLICK="validate_and_submit()">' );
/* document.writeln ( '<INPUT TYPE="button" VALUE="<?php echo lang("Help"); ?>" ONCLICK="window.open ( \'help_edit_entry.php\', \'cal_help\', \'dependent,menubar,height=365,width=650,innerHeight=365,outerWidth=420,resizable=1\');">' ); */
2000-08-18 05:24:22 +02:00
</SCRIPT>
<NOSCRIPT>
2000-09-07 22:49:55 +02:00
<INPUT TYPE="submit" VALUE="<?php echo lang("Submit"); ?>">
2000-08-18 05:24:22 +02:00
</NOSCRIPT>
<INPUT TYPE="hidden" NAME="participant_list" VALUE="">
</FORM>
<?php
if ($id > 0) {
echo "<A HREF=\"" . $phpgw->link("delete.php","id=$id") . "\" onClick=\"return confirm('"
2000-09-07 22:49:55 +02:00
. lang("Are you sure\\nyou want to\\ndelete this entry ?") . "');\">"
. lang("Delete") . "</A><BR>";
2000-08-18 05:24:22 +02:00
}
} // ***** This might be out of place. I was getting tons of parse errors
// from if ($can_edit) { This needs to be rewritten, because if you do
// not own the entry. You should not get into this portion of the program.
$phpgw->common->phpgw_footer();
2000-08-18 05:24:22 +02:00
?>