24include_once(
'./Services/Table/classes/class.ilTable2GUI.php');
25include_once(
'./Services/Calendar/classes/class.ilCalendarCategoryAssignments.php');
26include_once(
'./Services/Calendar/classes/class.ilCalendarSharedStatus.php');
52 parent::__construct($a_parent_obj,$a_parent_cmd);
54 $this->
setRowTemplate(
'tpl.calendar_inbox_shared_row.html',
'Services/Calendar');
57 $this->
addColumn($this->lng->txt(
'name'),
'title',
'50%');
58 $this->
addColumn($this->lng->txt(
'cal_apps'),
'apps',
'20%');
59 $this->
addColumn($this->lng->txt(
'create_date'),
'create_date',
'20%');
60 $this->
addColumn($this->lng->txt(
'cal_accepted'),
'accepted',
'5%');
62 $this->
addMultiCommand(
'acceptShared',$this->lng->txt(
'cal_share_accept'));
63 $this->
addMultiCommand(
'declineShared',$this->lng->txt(
'cal_share_decline'));
68 $this->
setTitle($this->lng->txt(
'cal_shared_calendars'));
81 $this->tpl->setVariable(
'VAL_ID',$a_set[
'cal_id']);
82 $this->tpl->setVariable(
'CALENDAR_NAME',$a_set[
'name']);
83 $this->tpl->setVariable(
'TXT_FROM',$this->lng->txt(
'owner'));
86 $this->tpl->setVariable(
'LASTNAME',$name[
'lastname']);
87 $this->tpl->setVariable(
'FIRSTNAME',$name[
'firstname']);
89 $this->tpl->setVariable(
'APPS_COUNT',$a_set[
'apps']);
92 if($a_set[
'accepted'])
95 $this->tpl->setVariable(
'ALT_ACC',$this->lng->txt(
'cal_accepted'));
97 if($a_set[
'declined'])
100 $this->tpl->setVariable(
'ALT_DEC',$this->lng->txt(
'cal_declined'));
114 $this->cal_data = $a_calendars ? $a_calendars : array();
129 $calendars = array();
133 foreach($this->cal_data as
$data)
135 if($status->isDeclined(
$data[
'cal_id']) || $status->isAccepted(
$data[
'cal_id']))
142 $calendars[$counter][
'cal_id'] =
$data[
'cal_id'];
143 $calendars[$counter][
'create_date'] =
$data[
'create_date'];
144 $calendars[$counter][
'obj_type'] =
$data[
'obj_type'];
145 $calendars[$counter][
'name'] = $tmp_calendar->getTitle();
146 $calendars[$counter][
'owner'] = $tmp_calendar->getObjId();
148 $calendars[$counter][
'accepted'] = $status->isAccepted(
$data[
'cal_id']);
149 $calendars[$counter][
'declined'] = $status->isDeclined(
$data[
'cal_id']);
154 $this->
setData($calendars ? $calendars : array());
155 return count($calendars) ? true :
false;
static _getAssignedAppointments($a_cat_id)
Get assigned apointments.
Stores calendar categories.
Show shared calendars for a specific user.
__construct($a_parent_obj, $a_parent_cmd)
Constructor.
parse()
parse calendar data
fillRow($a_set)
@access public
setCalendars($a_calendars)
set calendars
Stores status (accepted/declined) of shared calendars.
static formatDate(ilDateTime $date)
Format a date @access public.
@classDescription Date and time handling
static _lookupName($a_user_id)
lookup user name
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.
getParentObject()
Get parent object.
setPrefix($a_prefix)
set prefix for sort and offset fields (if you have two or more tables on a page that you want to sort...
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
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.
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)