33 public function __construct(
object $a_parent_obj,
string $a_parent_cmd)
37 $this->
user = $DIC->user();
41 $this->
setRowTemplate(
'tpl.calendar_inbox_shared_row.html',
'components/ILIAS/Calendar');
44 $this->
addColumn($this->
lng->txt(
'name'),
'title',
'50%');
45 $this->
addColumn($this->
lng->txt(
'cal_apps'),
'apps',
'20%');
46 $this->
addColumn($this->
lng->txt(
'create_date'),
'create_date',
'20%');
47 $this->
addColumn($this->
lng->txt(
'cal_accepted'),
'accepted',
'5%');
55 $this->
setTitle($this->
lng->txt(
'cal_shared_calendars'));
59 protected function fillRow(array $a_set): void
61 $this->tpl->setVariable(
'VAL_ID', $a_set[
'cal_id']);
62 $this->tpl->setVariable(
'CALENDAR_NAME', $a_set[
'name']);
63 $this->tpl->setVariable(
'TXT_FROM', $this->
lng->txt(
'owner'));
66 $this->tpl->setVariable(
'LASTNAME', $name[
'lastname']);
67 $this->tpl->setVariable(
'FIRSTNAME', $name[
'firstname']);
69 $this->tpl->setVariable(
'APPS_COUNT', $a_set[
'apps']);
70 $this->tpl->setVariable(
75 if ($a_set[
'accepted']) {
77 $this->tpl->setVariable(
'ALT_ACC', $this->
lng->txt(
'cal_accepted'));
79 if ($a_set[
'declined']) {
81 $this->tpl->setVariable(
'ALT_DEC', $this->
lng->txt(
'cal_declined'));
87 $this->cal_data = $a_calendars;
95 return (
bool) count($calendars);
setFormAction(string $a_form_action, bool $a_multipart=false)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setCalendars(array $a_calendars)
Stores status (accepted/declined) of shared calendars.
static _lookupName(int $a_user_id)
lookup user name
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
addMultiCommand(string $a_cmd, string $a_text)
__construct(object $a_parent_obj, string $a_parent_cmd)
setPrefix(string $a_prefix)