ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 $this->tpl->setCurrentBlock("img_ms");
95 $this->tpl->setVariable("IMG_MS", ilUtil::getImagePath("icon_ms.svg"));
96 $this->tpl->setVariable("ALT_MS", $lng->txt("cal_milestone"));
97 $this->tpl->parseCurrentBlock();
98 }
99
100 $this->tpl->setVariable('VAL_DESCRIPTION', $a_set['description']);
101
102 $this->tpl->setVariable('VAL_TITLE_LINK', $a_set['title']);
103 $this->ctrl->setParameterByClass('ilcalendarappointmentgui', 'app_id', $a_set['id']);
104 $this->tpl->setVariable('VAL_LINK', $this->ctrl->getLinkTargetByClass('ilcalendarappointmentgui', 'edit'));
105
106 switch ($a_set['frequence']) {
108 $this->tpl->setVariable('VAL_FREQUENCE', $this->lng->txt('cal_daily'));
109 break;
110
112 $this->tpl->setVariable('VAL_FREQUENCE', $this->lng->txt('cal_weekly'));
113 break;
114
116 $this->tpl->setVariable('VAL_FREQUENCE', $this->lng->txt('cal_monthly'));
117 break;
118
120 $this->tpl->setVariable('VAL_FREQUENCE', $this->lng->txt('cal_yearly'));
121 break;
122
123 default:
124 #$this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_no_recurrence'));
125 break;
126 }
127 if ($a_set['fullday']) {
129 new ilDate($a_set['begin'], IL_CAL_UNIX),
130 new ilDate($a_set['end'], IL_CAL_UNIX)
131 );
132 } else {
134 new ilDateTime($a_set['begin'], IL_CAL_UNIX),
135 new ilDateTime($a_set['end'], IL_CAL_UNIX)
136 );
137 }
138 $this->tpl->setVariable('VAL_BEGIN', $date);
139 /*
140 if($a_set['duration'])
141 {
142 if($a_set['milestone'])
143 {
144 $this->tpl->setVariable('VAL_DURATION','-');
145 }
146 else
147 {
148 $this->tpl->setVariable('VAL_DURATION',ilDatePresentation::secondsToString($a_set['duration']));
149 }
150 }
151 else
152 {
153 $this->tpl->setVariable('VAL_DURATION','');
154 }
155 */
156 $update = new ilDateTime($a_set['last_update'], IL_CAL_UNIX, $ilUser->getTimeZone());
157 $this->tpl->setVariable('VAL_LAST_UPDATE', ilDatePresentation::formatDate($update));
158 }
159
166 public function setAppointments($a_apps)
167 {
168 include_once('./Services/Calendar/classes/class.ilCalendarEntry.php');
169 include_once('./Services/Calendar/classes/class.ilCalendarRecurrences.php');
170 $appointments = array();
171
172 foreach ($a_apps as $event) {
173 $entry = $event['event'];
174
175 $rec = ilCalendarRecurrences::_getFirstRecurrence($entry->getEntryId());
176
177 $tmp_arr['id'] = $entry->getEntryId();
178 $tmp_arr['milestone'] = $entry->isMilestone();
179 $tmp_arr['title'] = $entry->getPresentationTitle();
180 $tmp_arr['description'] = $entry->getDescription();
181 $tmp_arr['fullday'] = $entry->isFullday();
182 #$tmp_arr['begin'] = $entry->getStart()->get(IL_CAL_UNIX);
183 #$tmp_arr['end'] = $entry->getEnd()->get(IL_CAL_UNIX);
184
185 $tmp_arr['begin'] = $event['dstart'];
186 $tmp_arr['end'] = $event['dend'];
187
188 $tmp_arr['duration'] = $tmp_arr['end'] - $tmp_arr['begin'];
189 if ($tmp_arr['fullday']) {
190 $tmp_arr['duration'] += (60 * 60 * 24);
191 }
192 if (!$tmp_arr['fullday'] and $tmp_arr['end'] == $tmp_arr['begin']) {
193 $tmp_arr['duration'] = '';
194 }
195
196 $tmp_arr['last_update'] = $entry->getLastUpdate()->get(IL_CAL_UNIX);
197 $tmp_arr['frequence'] = $rec->getFrequenceType();
198
199 $appointments[] = $tmp_arr;
200 }
201
202 //cuts appointments array after Limit
203 $appointments = array_slice($appointments, 0, $this->getLimit());
204
205 $this->setData($appointments ? $appointments : array());
206 }
207}
An exception for terminatinating execution or to throw for unit testing.
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 formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false)
Format a date @access public.
static formatPeriod(ilDateTime $start, ilDateTime $end, $a_skip_starting_day=false)
Format a period of two date Shows: 14.
@classDescription Date and time handling
Class for single dates.
Class ilTable2GUI.
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.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
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.
setId($a_val)
Set id.
setFormName($a_formname="")
Set Form name.
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
$ilUser
Definition: imgupload.php:18