mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
191 lines
7.5 KiB
PHP
Executable File
191 lines
7.5 KiB
PHP
Executable File
<?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"] = array("currentapp" => "calendar", "enable_calendar_class" => True, "enable_nextmatchs_class" => True);
|
|
include("../header.inc.php");
|
|
|
|
if ($id < 1) {
|
|
echo lang("Invalid entry id.");
|
|
exit;
|
|
}
|
|
|
|
function add_day(&$repeat_days,$day) {
|
|
if($repeat_days) $repeat_days .= ", ";
|
|
$repeat_days .= $day;
|
|
}
|
|
|
|
if ($year) $thisyear = $year;
|
|
if ($month) $thismonth = $month;
|
|
|
|
$pri[1] = lang("Low");
|
|
$pri[2] = lang("Medium");
|
|
$pri[3] = lang("High");
|
|
|
|
$db = $phpgw->db;
|
|
|
|
$unapproved = FALSE;
|
|
|
|
// first see who has access to view this entry
|
|
$is_my_event = false;
|
|
$cal = $phpgw->calendar->getevent(intval($id));
|
|
|
|
$cal_info = $cal[0];
|
|
|
|
if ($cal_info->owner == $phpgw_info["user"]["account_id"])
|
|
$is_my_event = true;
|
|
|
|
$description = nl2br($description);
|
|
|
|
$phpgw->template->set_file(array("view_begin" => "view.tpl",
|
|
"list" => "list.tpl",
|
|
"view_end" => "view.tpl",
|
|
"form_button"=> "form_button_script.tpl"));
|
|
|
|
$phpgw->template->set_block("view_begin","list","view_end","form_button");
|
|
|
|
$phpgw->template->set_var("bg_text",$phpgw_info["theme"]["bg_text"]);
|
|
$phpgw->template->set_var("name",$cal_info->name);
|
|
$phpgw->template->parse("out","view_begin");
|
|
|
|
// 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 (nl2br($cal_info->description)) {
|
|
$phpgw->template->set_var("field",lang("Description"));
|
|
$phpgw->template->set_var("data",nl2br($cal_info->description));
|
|
$phpgw->template->parse("output","list",True);
|
|
}
|
|
|
|
$phpgw->template->set_var("field",lang("Date"));
|
|
$phpgw->template->set_var("data",$phpgw->common->show_date($cal_info->datetime,$phpgw_info["user"]["preferences"]["common"]["dateformat"]));
|
|
$phpgw->template->parse("output","list",True);
|
|
|
|
// save date so the trailer links are for the same time period
|
|
$thisyear = (int)$cal_info->year;
|
|
$thismonth = (int)$cal_info->month;
|
|
$thisday = (int)$cal_info->day;
|
|
|
|
if ($phpgw_info["user"]["preferences"]["common"]["timeformat"] == "12") {
|
|
$format = "h:i:s a";
|
|
} else {
|
|
$format = "H:i:s";
|
|
}
|
|
|
|
if(intval($phpgw->common->show_date($cal_info->datetime,"H")) || intval($phpgw->common->show_date($cal_info->datetime,"i"))) {
|
|
$phpgw->template->set_var("field",lang("Time"));
|
|
$phpgw->template->set_var("data",$phpgw->common->show_date($cal_info->datetime,$format));
|
|
$phpgw->template->parse("output","list",True);
|
|
}
|
|
|
|
if(($cal_info->datetime <> $cal_info->edatetime) && (intval($phpgw->common->show_date($cal_info->datetime,"Hi")) <> 0 && intval($phpgw->common->show_date($cal_info->edatetime,"Hi")) <> 2359)) {
|
|
$phpgw->template->set_var("field",lang("End Time"));
|
|
$phpgw->template->set_var("data",$phpgw->common->show_date($cal_info->edatetime,$format));
|
|
$phpgw->template->parse("output","list",True);
|
|
}
|
|
|
|
$phpgw->template->set_var("field",lang("Priority"));
|
|
$phpgw->template->set_var("data",$pri[$cal_info->priority]);
|
|
$phpgw->template->parse("output","list",True);
|
|
|
|
$phpgw->template->set_var("field",lang("Created by"));
|
|
$participate = False;
|
|
for($i=0;$i<count($cal_info->participants);$i++) {
|
|
if($cal_info->participants[$i] == $phpgw_info["user"]["account_id"]) {
|
|
$participate = True;
|
|
}
|
|
}
|
|
if($is_my_event && $participate)
|
|
$phpgw->template->set_var("data","<a href=\""
|
|
.$phpgw->link("viewmatrix.php","participants=".$cal_info->owner."&date=".$cal_info->year.$cal_info->month.$cal_info->day."&matrixtype=free/busy")
|
|
."\">".$phpgw->common->grab_owner_name($cal_info->owner)."</a>");
|
|
else
|
|
$phpgw->template->set_var("data",$phpgw->common->grab_owner_name($cal_info->owner));
|
|
$phpgw->template->parse("output","list",True);
|
|
|
|
$phpgw->template->set_var("field",lang("Updated"));
|
|
$phpgw->template->set_var("data",$phpgw->common->show_date($cal_info->mdatetime));
|
|
$phpgw->template->parse("output","list",True);
|
|
|
|
if($cal_info->groups[0]) {
|
|
$cal_grps = "";
|
|
for($i=0;$i<count($cal_info->groups);$i++) {
|
|
if($i>0) $cal_grps .= "<br>";
|
|
$db->query("SELECT group_name FROM groups WHERE group_id=".$cal_info->groups[$i],__LINE__,__FILE__);
|
|
$db->next_record();
|
|
$cal_grps .= $db->f("group_name");
|
|
}
|
|
$phpgw->template->set_var("field",lang("Groups"));
|
|
$phpgw->template->set_var("data",$cal_grps);
|
|
$phpgw->template->parse("output","list",True);
|
|
}
|
|
|
|
$str = "";
|
|
for($i=0;$i<count($cal_info->participants);$i++) {
|
|
if($i) $str .= "<br>";
|
|
$str .= $phpgw->common->grab_owner_name($cal_info->participants[$i]);
|
|
}
|
|
$phpgw->template->set_var("field",lang("Participants"));
|
|
$phpgw->template->set_var("data",$str);
|
|
$phpgw->template->parse("output","list",True);
|
|
|
|
// Repeated Events
|
|
$str = $cal_info->rpt_type;
|
|
if($str <> "none" || $cal_info->rpt_use_end) {
|
|
$str .= " (";
|
|
if($cal_info->rpt_use_end)
|
|
$str .= lang("ends").": ".$phpgw->common->show_date($cal_info->rpt_end,"l, F d, Y")." ";
|
|
if($cal_info->rpt_type == "weekly" || $cal_info->rpt_type == "daily") {
|
|
$repeat_days = "";
|
|
if ($cal_info->rpt_sun)
|
|
add_day(&$repeat_days,lang("Sunday "));
|
|
if ($cal_info->rpt_mon)
|
|
add_day(&$repeat_days,lang("Monday "));
|
|
if ($cal_info->rpt_tue)
|
|
add_day(&$repeat_days,lang("Tuesay "));
|
|
if ($cal_info->rpt_wed)
|
|
add_day(&$repeat_days,lang("Wednesday "));
|
|
if ($cal_info->rpt_thu)
|
|
add_day(&$repeat_days,lang("Thursday "));
|
|
if ($cal_info->rpt_fri)
|
|
add_day(&$repeat_days,lang("Friday "));
|
|
if ($cal_info->rpt_sat)
|
|
add_day(&$repeat_days,lang("Saturday "));
|
|
$str .= lang("days repeated").": ".$repeat_days;
|
|
}
|
|
if($cal_info->rpt_freq) $str .= lang("frequency")." ".$cal_info->rpt_freq;
|
|
$str .= ")";
|
|
|
|
$phpgw->template->set_var("field",lang("Repetition"));
|
|
$phpgw->template->set_var("data",$str);
|
|
$phpgw->template->parse("output","list",True);
|
|
}
|
|
|
|
if ($is_my_event) {
|
|
$phpgw->template->set_var("action_url_button",$phpgw->link("edit_entry.php","id=$id"));
|
|
$phpgw->template->set_var("action_text_button"," ".lang("Edit")." ");
|
|
$phpgw->template->set_var("action_confirm_button","");
|
|
$phpgw->template->parse("edit_button","form_button");
|
|
|
|
$phpgw->template->set_var("action_url_button",$phpgw->link("delete.php","id=$id"));
|
|
$phpgw->template->set_var("action_text_button",lang("Delete"));
|
|
$phpgw->template->set_var("action_confirm_button","onClick=\"return confirm('".lang("Are you sure\\nyou want to\\ndelete this entry ?\\n\\nThis will delete\\nthis entry for all users.")."')\"");
|
|
$phpgw->template->parse("delete_button","form_button");
|
|
} else {
|
|
$phpgw->template->set_var("edit_button","");
|
|
$phpgw->template->set_var("delete_button","");
|
|
}
|
|
$phpgw->template->pparse("out","view_end");
|
|
$phpgw->common->phpgw_footer();
|
|
?>
|