2000-08-18 05:24:22 +02:00
|
|
|
<?php php_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$ */
|
|
|
|
|
2000-11-16 08:56:58 +01:00
|
|
|
$phpgw_info["flags"] = array("currentapp" => "calendar", "enable_calendar_class" => True, "enable_nextmatchs_class" => True);
|
2000-08-18 05:24:22 +02:00
|
|
|
include("../header.inc.php");
|
|
|
|
|
2000-11-16 13:20:37 +01:00
|
|
|
if ($id < 1) {
|
|
|
|
echo lang("Invalid entry id.");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2000-08-18 05:24:22 +02:00
|
|
|
function grab_group($db,$id)
|
|
|
|
{
|
2000-11-04 19:15:49 +01:00
|
|
|
$db->query("select groups from webcal_entry_groups where cal_id=$id");
|
2000-08-18 05:24:22 +02:00
|
|
|
$db->next_record();
|
|
|
|
|
|
|
|
return $db->f("groups");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($year) $thisyear = $year;
|
|
|
|
if ($month) $thismonth = $month;
|
|
|
|
|
2000-09-07 22:49:55 +02:00
|
|
|
$pri[1] = lang("Low");
|
|
|
|
$pri[2] = lang("Medium");
|
|
|
|
$pri[3] = lang("High");
|
2000-08-18 05:24:22 +02:00
|
|
|
|
|
|
|
$unapproved = FALSE;
|
|
|
|
|
|
|
|
|
|
|
|
// first see who has access to view this entry
|
|
|
|
$is_my_event = false;
|
2000-11-04 19:15:49 +01:00
|
|
|
$phpgw->db->query("SELECT cal_id FROM webcal_entry_user WHERE cal_login="
|
|
|
|
. $phpgw_info["user"]["account_id"]." AND cal_id = $id");
|
2000-08-18 05:24:22 +02:00
|
|
|
|
|
|
|
$phpgw->db->next_record();
|
|
|
|
if ($phpgw->db->f(0) == $id)
|
|
|
|
$is_my_event = true;
|
|
|
|
|
2000-11-18 22:44:05 +01:00
|
|
|
$phpgw->db->query("SELECT cal_owner, cal_date, cal_time, cal_mod_date, "
|
2000-08-18 05:24:22 +02:00
|
|
|
. "cal_mod_time,cal_duration,cal_priority,cal_type,cal_access, "
|
2000-10-12 00:44:12 +02:00
|
|
|
. "cal_name,cal_description,account_firstname, account_lastname "
|
|
|
|
. " FROM webcal_entry, accounts WHERE cal_id=$id "
|
2000-11-18 22:44:05 +01:00
|
|
|
. " and webcal_entry.cal_owner = accounts.account_id");
|
2000-08-18 05:24:22 +02:00
|
|
|
|
|
|
|
$phpgw->db->next_record();
|
|
|
|
|
2000-11-18 22:44:05 +01:00
|
|
|
$owner = $phpgw->db->f(0);
|
2000-08-18 05:24:22 +02:00
|
|
|
$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);
|
2000-08-18 05:24:22 +02:00
|
|
|
$description = htmlspecialchars($description);
|
|
|
|
$description = nl2br($description);
|
|
|
|
|
|
|
|
?>
|
|
|
|
<h2>
|
|
|
|
<font color="<?php echo $H2COLOR; ?>">
|
2000-09-05 06:05:39 +02:00
|
|
|
<?php echo ($name); ?>
|
2000-08-18 05:24:22 +02:00
|
|
|
</font>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<TABLE BORDER=0>
|
|
|
|
<?php
|
|
|
|
// Some browser add a \n when its entered in the database. Not a big deal
|
|
|
|
// this will be printed even though its not needed.
|
|
|
|
if ($description) {
|
2000-09-07 22:49:55 +02:00
|
|
|
echo "<tr><td VALIGN=\"top\"><b>" . lang("Description") . ":</B></TD><td>"
|
2000-08-18 05:24:22 +02:00
|
|
|
. "$description</TD></TR>";
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<tr>
|
2000-09-07 22:49:55 +02:00
|
|
|
<TD VALIGN="top"><b><?php echo lang("Date"); ?>:</B></TD>
|
2000-08-18 05:24:22 +02:00
|
|
|
<td><?php echo date_to_str($phpgw->db->f(1)); ?></TD>
|
|
|
|
</TR>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// save date so the trailer links are for the same time period
|
|
|
|
$list = split("-",$phpgw->db->f(1));
|
|
|
|
$thisyear = (int)($phpgw->db->f(1) / 10000);
|
|
|
|
$thismonth = ($phpgw->db->f(1) / 100) % 100;
|
|
|
|
$thisday = $phpgw->db->f(1) % 100;
|
|
|
|
|
|
|
|
if ($phpgw->db->f(2) > 0) {
|
|
|
|
?>
|
|
|
|
<tr>
|
2000-09-07 22:49:55 +02:00
|
|
|
<TD VALIGN="top"><b><?php echo lang("Time"); ?>:</B></TD>
|
2000-08-18 05:24:22 +02:00
|
|
|
<td><?php echo display_time($phpgw->db->f(2)); ?></TD>
|
|
|
|
</TR>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($phpgw->db->f(5) > 0) {
|
2000-09-07 22:49:55 +02:00
|
|
|
echo "<tr><TD VALIGN=\"top\"><b>" . lang("Duration") . ":</B></TD><td>"
|
|
|
|
. $phpgw->db->f(5) . " " . lang("minutes") . "</TD></TR>";
|
2000-08-18 05:24:22 +02:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<tr>
|
2000-09-07 22:49:55 +02:00
|
|
|
<TD VALIGN="top"><b><?php echo lang("Priority"); ?>:</B></TD>
|
2000-08-18 05:24:22 +02:00
|
|
|
<td><?php echo $pri[$phpgw->db->f(6)]; ?></TD>
|
|
|
|
</TR>
|
|
|
|
|
|
|
|
<?php
|
2000-09-07 22:49:55 +02:00
|
|
|
echo "<tr><TD VALIGN=\"top\"><b>" . lang("Created by") . ":</B></TD>\n";
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-10-12 00:44:12 +02:00
|
|
|
echo "<td>" . $phpgw->db->f(11) . " " . $phpgw->db->f(12) . "</td></tr>\n";
|
2000-08-18 05:24:22 +02:00
|
|
|
?>
|
|
|
|
<tr>
|
2000-09-07 22:49:55 +02:00
|
|
|
<TD VALIGN="top"><b><?php echo lang("Updated"); ?>:</B></TD>
|
2000-08-18 05:24:22 +02:00
|
|
|
<td><?php echo date_to_str($phpgw->db->f(3)) . " " . display_time($phpgw->db->f(4));
|
|
|
|
?></TD>
|
|
|
|
</TR>
|
|
|
|
|
|
|
|
<?php
|
2000-09-18 18:42:24 +02:00
|
|
|
$cal_groups_temp = $phpgw->accounts->read_group_names();
|
2000-09-01 09:55:24 +02:00
|
|
|
for($i = 0; $i < count($cal_groups_temp); $i++) {
|
|
|
|
$cal_groups .= $cal_groups_temp[$i][1] . "<br>\n";
|
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
if ($cal_groups)
|
2000-09-07 22:49:55 +02:00
|
|
|
echo "<tr><td><b>" . lang("Groups") . ":</b></td><td>".$cal_groups."</td></tr>";
|
2000-08-18 05:24:22 +02:00
|
|
|
?>
|
|
|
|
|
|
|
|
<tr>
|
2000-09-07 22:49:55 +02:00
|
|
|
<TD VALIGN="top"><b><?php echo lang("Participants"); ?>:</B></TD>
|
2000-08-18 05:24:22 +02:00
|
|
|
<td><?php
|
|
|
|
|
2000-09-28 00:13:33 +02:00
|
|
|
$phpgw->db->query("SELECT webcal_entry_user.cal_login, accounts.account_lastname, "
|
|
|
|
. "accounts.account_firstname, webcal_entry_user.cal_status "
|
2000-08-18 05:24:22 +02:00
|
|
|
. "FROM webcal_entry_user, accounts WHERE webcal_entry_user."
|
|
|
|
. "cal_id='$id' AND webcal_entry_user.cal_login = accounts."
|
2000-11-04 19:15:49 +01:00
|
|
|
. "account_id");
|
2000-08-18 05:24:22 +02:00
|
|
|
|
|
|
|
$first = 1;
|
|
|
|
while ($phpgw->db->next_record()) {
|
|
|
|
if ($first)
|
|
|
|
$first = 0;
|
|
|
|
else
|
|
|
|
echo "<BR>";
|
|
|
|
if (strlen($phpgw->db->f(1)) > 0)
|
|
|
|
echo $phpgw->db->f(1) . ", " . $phpgw->db->f(2);
|
|
|
|
else
|
|
|
|
echo $phpgw->db->f(0);
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</TD>
|
|
|
|
</TR>
|
|
|
|
<tr>
|
2000-09-07 22:49:55 +02:00
|
|
|
<TD VALIGN="top"><b><?php echo lang("Repetition"); ?>:</B></TD>
|
2000-08-18 05:24:22 +02:00
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
$phpgw->db->query("SELECT * from webcal_entry_repeats WHERE cal_id=$id");
|
|
|
|
$phpgw->db->next_record();
|
|
|
|
if (substr($phpgw->db->f(5),0,1) == 'y')
|
2000-09-07 22:49:55 +02:00
|
|
|
$t_repeat_days = lang("Sunday ");
|
2000-08-18 05:24:22 +02:00
|
|
|
if (substr($phpgw->db->f(5),1,1) == 'y')
|
2000-09-07 22:49:55 +02:00
|
|
|
$t_repeat_days .= lang("Monday ");
|
2000-08-18 05:24:22 +02:00
|
|
|
if (substr($phpgw->db->f(5),2,1) == 'y')
|
2000-09-07 22:49:55 +02:00
|
|
|
$t_repeat_days .= lang("Tuesday ");
|
2000-08-18 05:24:22 +02:00
|
|
|
if (substr($phpgw->db->f(5),3,1) == 'y')
|
2000-09-07 22:49:55 +02:00
|
|
|
$t_repeat_days .= lang("Wednesday ");
|
2000-08-18 05:24:22 +02:00
|
|
|
if (substr($phpgw->db->f(5),4,1) == 'y')
|
2000-09-07 22:49:55 +02:00
|
|
|
$t_repeat_days .= lang("Thursday ");
|
2000-08-18 05:24:22 +02:00
|
|
|
if (substr($phpgw->db->f(5),5,1) == 'y')
|
2000-09-07 22:49:55 +02:00
|
|
|
$t_repeat_days .= lang("Friday ");
|
2000-08-18 05:24:22 +02:00
|
|
|
if (substr($phpgw->db->f(5),6,1) == 'y')
|
2000-09-07 22:49:55 +02:00
|
|
|
$t_repeat_days .= lang("Saturday ");
|
2000-08-18 05:24:22 +02:00
|
|
|
|
|
|
|
echo $phpgw->db->f(2) . " (";
|
|
|
|
if ($phpgw->db->f(3))
|
|
|
|
echo "ends: " . $phpgw->db->f(3) . ", ";
|
|
|
|
if ($phpgw->db->f(2) == 'weekly')
|
2000-09-07 22:49:55 +02:00
|
|
|
echo lang("days repeated") . ": " . $t_repeat_days . ", ";
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-09-07 22:49:55 +02:00
|
|
|
echo lang("frequency") . ": " . $phpgw->db->f(4) . ")";
|
2000-08-18 05:24:22 +02:00
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
</TABLE>
|
|
|
|
|
|
|
|
<P>
|
|
|
|
|
|
|
|
<?php
|
2000-11-18 22:44:05 +01:00
|
|
|
if ($phpgw_info["user"]["account_id"] == $owner) {
|
2000-09-05 05:05:32 +02:00
|
|
|
echo "<A HREF=\"" . $phpgw->link("edit_entry.php","id=$id") . "\">"
|
2000-09-07 22:49:55 +02:00
|
|
|
. lang("Edit") . "</A><BR>\n<A HREF=\"" . $phpgw->link("delete.php","id=$id") . "\" onClick=\"return confirm('"
|
|
|
|
. lang("Are you sure\\nyou want to\\ndelete this entry ?\\n\\nThis will delete\\nthis entry for all users.") . "');\">" . lang("Delete") . "</A><BR>\n";
|
2000-08-18 05:24:22 +02:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php
|
2000-09-29 07:24:18 +02:00
|
|
|
$phpgw->common->phpgw_footer();
|
2000-08-18 05:24:22 +02:00
|
|
|
?>
|
|
|
|
|