ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilCalendarChangedAppointmentsTableGUI.php
Go to the documentation of this file.
1<?php
2/*
3 +-----------------------------------------------------------------------------+
4 | ILIAS open source |
5 +-----------------------------------------------------------------------------+
6 | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7 | |
8 | This program is free software; you can redistribute it and/or |
9 | modify it under the terms of the GNU General Public License |
10 | as published by the Free Software Foundation; either version 2 |
11 | of the License, or (at your option) any later version. |
12 | |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | GNU General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software |
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21 +-----------------------------------------------------------------------------+
22*/
23
24include_once('./Services/Calendar/classes/class.ilCalendarCategories.php');
25include_once('./Services/Table/classes/class.ilTable2GUI.php');
26
35{
36 private $cat_id = 0;
37 private $categories = null;
38 private $is_editable = false;
39
47 public function __construct($a_parent_obj,$a_parent_cmd)
48 {
49 global $lng,$ilCtrl;
50
51
52 $this->categories = ilCalendarCategories::_getInstance();
53
54 $this->lng = $lng;
55 $this->lng->loadLanguageModule('dateplaner');
56 $this->ctrl = $ilCtrl;
57
58 $this->setId('calinbox');
59
60 parent::__construct($a_parent_obj,$a_parent_cmd);
61 $this->setFormName('appointments');
62 $this->addColumn($this->lng->txt('date'),'begin',"30%");
63 $this->addColumn($this->lng->txt('title'),'title',"40%");
64 #$this->addColumn($this->lng->txt('cal_duration'),'duration',"15%");
65 $this->addColumn($this->lng->txt('cal_recurrences'),'frequence',"15%");
66 $this->addColumn($this->lng->txt('last_update'),'last_update',"15%");
67
68
69 $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
70 $this->setRowTemplate("tpl.show_changed_appointment_row.html","Services/Calendar");
71
72 $this->setShowRowsSelector(true);
73 $this->enable('sort');
74 $this->enable('header');
75 $this->enable('numinfo');
76
77 $this->setDefaultOrderField('begin');
78 $this->setDefaultOrderDirection('asc');
79 }
80
81
89 protected function fillRow($a_set)
90 {
91 global $ilUser, $lng;
92
93 if ($a_set["milestone"])
94 {
95 $this->tpl->setCurrentBlock("img_ms");
96 $this->tpl->setVariable("IMG_MS", ilUtil::getImagePath("icon_ms.svg"));
97 $this->tpl->setVariable("ALT_MS", $lng->txt("cal_milestone"));
98 $this->tpl->parseCurrentBlock();
99 }
100
101 $this->tpl->setVariable('VAL_DESCRIPTION',$a_set['description']);
102
103 $this->tpl->setVariable('VAL_TITLE_LINK',$a_set['title']);
104 $this->ctrl->setParameterByClass('ilcalendarappointmentgui','app_id',$a_set['id']);
105 $this->tpl->setVariable('VAL_LINK',$this->ctrl->getLinkTargetByClass('ilcalendarappointmentgui','edit'));
106
107 switch($a_set['frequence'])
108 {
110 $this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_daily'));
111 break;
112
114 $this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_weekly'));
115 break;
116
118 $this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_monthly'));
119 break;
120
122 $this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_yearly'));
123 break;
124
125 default:
126 #$this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_no_recurrence'));
127 break;
128 }
129 if($a_set['fullday'])
130 {
132 new ilDate($a_set['begin'],IL_CAL_UNIX),
133 new ilDate($a_set['end'],IL_CAL_UNIX)
134 );
135 }
136 else
137 {
139 new ilDateTime($a_set['begin'],IL_CAL_UNIX),
140 new ilDateTime($a_set['end'],IL_CAL_UNIX)
141 );
142 }
143 $this->tpl->setVariable('VAL_BEGIN',$date);
144 /*
145 if($a_set['duration'])
146 {
147 if($a_set['milestone'])
148 {
149 $this->tpl->setVariable('VAL_DURATION','-');
150 }
151 else
152 {
153 $this->tpl->setVariable('VAL_DURATION',ilFormat::_secondsToString($a_set['duration']));
154 }
155 }
156 else
157 {
158 $this->tpl->setVariable('VAL_DURATION','');
159 }
160 */
161 $update = new ilDateTime($a_set['last_update'],IL_CAL_UNIX,$ilUser->getTimeZone());
162 $this->tpl->setVariable('VAL_LAST_UPDATE',ilDatePresentation::formatDate($update));
163
164
165 }
166
173 public function setAppointments($a_apps)
174 {
175 include_once('./Services/Calendar/classes/class.ilCalendarEntry.php');
176 include_once('./Services/Calendar/classes/class.ilCalendarRecurrences.php');
177 $appointments = array();
178
179 foreach($a_apps as $event)
180 {
181 $entry = $event['event'];
182
183 $rec = ilCalendarRecurrences::_getFirstRecurrence($entry->getEntryId());
184
185 $tmp_arr['id'] = $entry->getEntryId();
186 $tmp_arr['milestone'] = $entry->isMilestone();
187 $tmp_arr['title'] = $entry->getPresentationTitle();
188 $tmp_arr['description'] = $entry->getDescription();
189 $tmp_arr['fullday'] = $entry->isFullday();
190 #$tmp_arr['begin'] = $entry->getStart()->get(IL_CAL_UNIX);
191 #$tmp_arr['end'] = $entry->getEnd()->get(IL_CAL_UNIX);
192
193 $tmp_arr['begin'] = $event['dstart'];
194 $tmp_arr['end'] = $event['dend'];
195
196 $tmp_arr['duration'] = $tmp_arr['end'] - $tmp_arr['begin'];
197 if($tmp_arr['fullday'])
198 {
199 $tmp_arr['duration'] += (60 * 60 * 24);
200 }
201 if(!$tmp_arr['fullday'] and $tmp_arr['end'] == $tmp_arr['begin'])
202 {
203 $tmp_arr['duration'] = '';
204 }
205
206 $tmp_arr['last_update'] = $entry->getLastUpdate()->get(IL_CAL_UNIX);
207 $tmp_arr['frequence'] = $rec->getFrequenceType();
208
209 $appointments[] = $tmp_arr;
210 }
211
212 //cuts appointments array after Limit
213 $appointments = array_slice($appointments, 0, $this->getLimit());
214
215 $this->setData($appointments ? $appointments : array());
216 }
217
218}
219?>
const IL_CAL_FREQ_YEARLY
const IL_CAL_FREQ_MONTHLY
const IL_CAL_FREQ_WEEKLY
const IL_CAL_UNIX
static _getInstance($a_usr_id=0)
get singleton instance
static _getFirstRecurrence($a_cal_id)
get first recurrence
static formatPeriod(ilDateTime $start, ilDateTime $end)
Format a period of two date Shows: 14.
static formatDate(ilDateTime $date)
Format a date @access public.
@classDescription Date and time handling
Class for single dates.
Class ilTable2GUI.
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
setData($a_data)
set table data @access public
getLimit()
Get limit.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormName($a_formname)
Set Form name.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setId($a_val)
Set id.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
enable($a_module_name)
enables particular modules of table
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
const IL_CAL_FREQ_DAILY
Model of calendar entry recurrcences.
global $ilCtrl
Definition: ilias.php:18
global $lng
Definition: privfeed.php:40
global $ilUser
Definition: imgupload.php:15