ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilCalendarAppointmentsTableGUI.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');
33{
34 private $cat_id = 0;
35 private $categories = null;
36 private $is_editable = false;
37
45 public function __construct($a_parent_obj, $a_parent_cmd, $a_category_id)
46 {
47 global $lng,$ilCtrl;
48
49
50 $this->categories = ilCalendarCategories::_getInstance();
51 $this->cat_id = $a_category_id;
52 $this->is_editable = $this->categories->isEditable($this->cat_id);
53
54 $this->lng = $lng;
55 $this->lng->loadLanguageModule('dateplaner');
56 $this->ctrl = $ilCtrl;
57
58 $this->setId('calcalapps');
59
60 parent::__construct($a_parent_obj, $a_parent_cmd);
61 $this->setFormName('appointments');
62 $this->addColumn('', 'f', "1");
63 $this->addColumn($this->lng->txt('cal_start'), 'dt_sort', "30%");
64 $this->addColumn($this->lng->txt('title'), 'title', "60%");
65 $this->addColumn($this->lng->txt('cal_duration'), 'duration', "20%");
66 $this->addColumn($this->lng->txt('cal_recurrences'), 'frequence', "10%");
67
68 if ($this->is_editable) {
69 $this->addMultiCommand('askDeleteAppointments', $this->lng->txt('delete'));
70 $this->enable('select_all');
71 } else {
72 $this->disable('select_all');
73 }
74
75 $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
76 $this->setRowTemplate("tpl.show_appointment_row.html", "Services/Calendar");
77
78 $this->setShowRowsSelector(true);
79 $this->enable('sort');
80 $this->enable('header');
81 $this->enable('numinfo');
82
83 $this->setDefaultOrderField('dt_sort');
84 $this->setSelectAllCheckbox('appointments');
85 }
86
87
95 protected function fillRow($a_set)
96 {
97 if ($a_set['deletable']) {
98 $this->tpl->setVariable('VAL_ID', $a_set['id']);
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']) {
109 $this->tpl->setVariable('VAL_FREQUENCE', $this->lng->txt('cal_daily'));
110 break;
111
113 $this->tpl->setVariable('VAL_FREQUENCE', $this->lng->txt('cal_weekly'));
114 break;
115
117 $this->tpl->setVariable('VAL_FREQUENCE', $this->lng->txt('cal_monthly'));
118 break;
119
121 $this->tpl->setVariable('VAL_FREQUENCE', $this->lng->txt('cal_yearly'));
122 break;
123
124 default:
125 //$this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_no_recurrence'));
126 $this->tpl->setVariable('VAL_FREQUENCE', '');
127 break;
128 }
129 $this->tpl->setVariable('VAL_BEGIN', $a_set['dt']);
130 if ($a_set['duration']) {
131 $this->tpl->setVariable('VAL_DURATION', ilDatePresentation::secondsToString($a_set['duration']));
132 } else {
133 $this->tpl->setVariable('VAL_DURATION', '');
134 }
135 }
136
141 protected static function getToday()
142 {
143 return $this->today;
144 }
145
152 public function setAppointments($a_apps)
153 {
154 include_once('./Services/Calendar/classes/class.ilCalendarEntry.php');
155 include_once('./Services/Calendar/classes/class.ilCalendarRecurrences.php');
156 include_once('./Services/Calendar/classes/class.ilCalendarCategory.php');
157
158 $cat = new ilCalendarCategory($this->cat_id);
159
160 foreach ($a_apps as $cal_entry_id) {
161 $entry = new ilCalendarEntry($cal_entry_id);
162 $rec = ilCalendarRecurrences::_getFirstRecurrence($entry->getEntryId());
163
164 // booking
165 if ($cat->getType() == ilCalendarCategory::TYPE_CH) {
166 include_once 'Services/Booking/classes/class.ilBookingEntry.php';
167 $book = new ilBookingEntry($entry->getContextId());
168 if ($book) {
169 $title = $entry->getTitle();
170 if ($book->isOwner()) {
171 $max = (int) $book->getNumberOfBookings();
172 $current = (int) $book->getCurrentNumberOfBookings($entry->getEntryId());
173 if ($max > 1) {
174 $title .= ' (' . $current . '/' . $max . ')';
175 } elseif ($current == $max) {
176 $title .= ' (' . $this->lng->txt('cal_booked_out') . ')';
177 } else {
178 $title .= ' (' . $this->lng->txt('cal_book_free') . ')';
179 }
180 } elseif ($book->hasBooked($entry->getEntryId())) {
181 $title .= ' (' . $this->lng->txt('cal_date_booked') . ')';
182 }
183 }
184 } else {
185 $title = $entry->getPresentationTitle();
186 }
187
188 $tmp_arr['id'] = $entry->getEntryId();
189 $tmp_arr['title'] = $title;
190 $tmp_arr['description'] = $entry->getDescription();
191 $tmp_arr['fullday'] = $entry->isFullday();
192 $tmp_arr['begin'] = $entry->getStart()->get(IL_CAL_UNIX);
193 $tmp_arr['end'] = $entry->getEnd()->get(IL_CAL_UNIX);
194
195 $tmp_arr['dt_sort'] = $entry->getStart()->get(IL_CAL_UNIX);
196 $tmp_arr['dt'] = ilDatePresentation::formatPeriod(
197 $entry->getStart(),
198 $entry->getEnd()
199 );
200
201 #$tmp_arr['duration'] = ($dur = $tmp_arr['end'] - $tmp_arr['begin']) ? $dur : 60 * 60 * 24;
202 $tmp_arr['duration'] = $tmp_arr['end'] - $tmp_arr['begin'];
203 if ($tmp_arr['fullday']) {
204 $tmp_arr['duration'] += (60 * 60 * 24);
205 }
206
207 if (!$tmp_arr['fullday'] and $tmp_arr['end'] == $tmp_arr['begin']) {
208 $tmp_arr['duration'] = '';
209 }
210 $tmp_arr['frequence'] = $rec->getFrequenceType();
211 $tmp_arr['deletable'] = (!$entry->isAutoGenerated() and $this->is_editable);
212
213 $appointments[] = $tmp_arr;
214 }
215 $this->setData($appointments ? $appointments : array());
216 }
217}
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
Booking definition.
__construct($a_parent_obj, $a_parent_cmd, $a_category_id)
Constructor.
static _getInstance($a_usr_id=0)
get singleton instance
Stores calendar categories.
Model for a calendar entry.
static _getFirstRecurrence($a_cal_id)
get first recurrence
static secondsToString($seconds, $force_with_seconds=false, $a_lng=null)
converts seconds to string: Long: 7 days 4 hour(s) ...
static formatPeriod(ilDateTime $start, ilDateTime $end, $a_skip_starting_day=false)
Format a period of two date Shows: 14.
Class ilTable2GUI.
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
setData($a_data)
set table data @access public
setRowTemplate($a_template, $a_template_dir="")
Set row template.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
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.
disable($a_module_name)
diesables particular modules of table
enable($a_module_name)
enables particular modules of table
const IL_CAL_FREQ_DAILY
Model of calendar entry recurrcences.
global $ilCtrl
Definition: ilias.php:18