ILIAS  Release_3_10_x_branch Revision 61812
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 
24 include_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)
46  {
47  global $lng,$ilCtrl;
48 
49 
50  $this->categories = ilCalendarCategories::_getInstance();
51 
52  $this->lng = $lng;
53  $this->lng->loadLanguageModule('dateplaner');
54  $this->ctrl = $ilCtrl;
55 
56  parent::__construct($a_parent_obj,$a_parent_cmd);
57  $this->setFormName('appointments');
58  $this->addColumn($this->lng->txt('title'),'title',"40%");
59  $this->addColumn($this->lng->txt('cal_start'),'begin',"15%");
60  $this->addColumn($this->lng->txt('cal_duration'),'duration',"20%");
61  $this->addColumn($this->lng->txt('cal_recurrences'),'frequence',"10%");
62  $this->addColumn($this->lng->txt('last_update'),'last_update',"15%");
63 
64 
65  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
66  $this->setRowTemplate("tpl.show_changed_appointment_row.html","Services/Calendar");
67  $this->enable('sort');
68  $this->enable('header');
69  $this->enable('numinfo');
70 
71  $this->setDefaultOrderField('last_update');
72  $this->setDefaultOrderDirection('desc');
73 
74  $this->setPrefix('apps');
75  }
76 
77 
85  protected function fillRow($a_set)
86  {
87  global $ilUser;
88 
89 
90 
91  $this->tpl->setVariable('VAL_DESCRIPTION',$a_set['description']);
92 
93  $this->tpl->setVariable('VAL_TITLE_LINK',$a_set['title']);
94  $this->ctrl->setParameterByClass('ilcalendarappointmentgui','app_id',$a_set['id']);
95  $this->tpl->setVariable('VAL_LINK',$this->ctrl->getLinkTargetByClass('ilcalendarappointmentgui','edit'));
96 
97  switch($a_set['frequence'])
98  {
99  case IL_CAL_FREQ_DAILY:
100  $this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_daily'));
101  break;
102 
103  case IL_CAL_FREQ_WEEKLY:
104  $this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_weekly'));
105  break;
106 
107  case IL_CAL_FREQ_MONTHLY:
108  $this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_monthly'));
109  break;
110 
111  case IL_CAL_FREQ_YEARLY:
112  $this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_yearly'));
113  break;
114 
115  default:
116  $this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_no_recurrence'));
117  break; $this->addColumn($this->lng->txt('cal_duration'),'duration',"20%");
118  }
119  // TOD: Localization
120  if($a_set['fullday'])
121  {
122  $start = new ilDate($a_set['begin'],IL_CAL_UNIX);
123  $this->tpl->setVariable('VAL_BEGIN',ilDatePresentation::formatDate($start));
124  }
125  else
126  {
127  $start = new ilDateTime($a_set['begin'],IL_CAL_UNIX,'UTC');
128  $this->tpl->setVariable('VAL_BEGIN',ilDatePresentation::formatDate($start));
129  }
130  if($a_set['duration'])
131  {
132  $this->tpl->setVariable('VAL_DURATION',ilFormat::_secondsToString($a_set['duration']));
133  }
134  else
135  {
136  $this->tpl->setVariable('VAL_DURATION','');
137  }
138  $update = new ilDateTime($a_set['last_update'],IL_CAL_UNIX,$ilUser->getTimeZone());
139  $this->tpl->setVariable('VAL_LAST_UPDATE',ilDatePresentation::formatDate($update));
140 
141 
142  }
143 
150  public function setAppointments($a_apps)
151  {
152  include_once('./Services/Calendar/classes/class.ilCalendarEntry.php');
153  include_once('./Services/Calendar/classes/class.ilCalendarRecurrences.php');
154 
155 
156  foreach($a_apps as $entry)
157  {
158  $rec = ilCalendarRecurrences::_getFirstRecurrence($entry->getEntryId());
159 
160  $tmp_arr['id'] = $entry->getEntryId();
161  $tmp_arr['title'] = $entry->getPresentationTitle();
162  $tmp_arr['description'] = $entry->getDescription();
163  $tmp_arr['fullday'] = $entry->isFullday();
164  $tmp_arr['begin'] = $entry->getStart()->get(IL_CAL_UNIX);
165  $tmp_arr['end'] = $entry->getEnd()->get(IL_CAL_UNIX);
166 
167  #$tmp_arr['duration'] = ($dur = $tmp_arr['end'] - $tmp_arr['begin']) ? $dur : 60 * 60 * 24;
168  $tmp_arr['duration'] = $tmp_arr['end'] - $tmp_arr['begin'];
169  if($tmp_arr['fullday'])
170  {
171  $tmp_arr['duration'] += (60 * 60 * 24);
172  }
173  if(!$tmp_arr['fullday'] and $tmp_arr['end'] == $tmp_arr['begin'])
174  {
175  $tmp_arr['duration'] = '';
176  }
177 
178  $tmp_arr['last_update'] = $entry->getLastUpdate()->get(IL_CAL_UNIX);
179  $tmp_arr['frequence'] = $rec->getFrequenceType();
180 
181  $appointments[] = $tmp_arr;
182  }
183 
184  $this->setData($appointments ? $appointments : array());
185  }
186 
187 }
188 ?>