3 declare(strict_types=1);
31 public function __construct(
object $a_gui,
string $a_cmd,
int $a_user_id)
33 $this->user_id = $a_user_id;
41 $this->
addColumn($this->
lng->txt(
'appointment'),
'start');
44 $this->
addColumn($this->
lng->txt(
'cal_ch_grp_header'),
'group');
48 $this->
addColumn($this->
lng->txt(
'cal_ch_num_bookings'),
'num_bookings');
49 $this->
addColumn($this->
lng->txt(
'cal_ch_bookings'),
'participants');
50 $this->
addColumn($this->
lng->txt(
'cal_ch_target_object'),
'target');
53 $this->
setRowTemplate(
'tpl.ch_upcoming_row.html',
'Services/Calendar');
65 $this->
addMultiCommand(
'searchUsersForAppointments', $this->
lng->txt(
'cal_ch_assign_participants'));
82 protected function fillRow(array $a_set): void
84 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
85 $this->tpl->setVariable(
'START', $a_set[
'start_p']);
86 $this->tpl->setVariable(
'TITLE', $a_set[
'title']);
89 $this->tpl->setVariable(
'TITLE_GROUP', $a_set[
'group']);
92 $this->tpl->setVariable(
'NUM_BOOKINGS', $a_set[
'num_bookings']);
94 foreach ((array) ($a_set[
'target_links'] ?? []) as $link) {
95 $this->tpl->setCurrentBlock(
'links');
96 $this->tpl->setVariable(
'TARGET', $link[
'title']);
97 $this->tpl->setVariable(
'URL_TARGET', $link[
'link']);
98 $this->tpl->parseCurrentBlock();
100 if ($a_set[
'bookings']) {
101 foreach ($a_set[
'bookings'] as $user_id =>
$name) {
103 if (($user_profile_prefs[
"public_profile"] ??
'') ==
"y") {
104 $this->tpl->setCurrentBlock(
'booking_with_link');
106 $this->tpl->setVariable(
108 $this->
ctrl->getLinkTarget($this->getParentObject(),
'showprofile')
111 $this->tpl->setCurrentBlock(
'booking_without_link');
114 $this->tpl->setVariable(
'TXT_BOOKING',
$name);
115 $this->tpl->parseCurrentBlock();
119 $this->tpl->setVariable(
'BOOKINGS', implode(
', ', $a_set[
'bookings']));
122 $list->setId(
'act_cht_' . $a_set[
'id']);
123 $list->setListTitle($this->
lng->txt(
'actions'));
127 $this->
lng->txt(
'edit'),
132 $this->
lng->txt(
'cal_ch_assign_participants'),
134 $this->
ctrl->getLinkTargetByClass(
'ilRepositorySearchGUI',
'')
137 $this->
lng->txt(
'delete'),
141 $this->tpl->setVariable(
'ACTIONS', $list->getHTML());
149 $data[$counter][
'id'] = $app->getEntryId();
150 $data[$counter][
'title'] = $app->getTitle();
151 $data[$counter][
'description'] = $app->getDescription();
158 $booked_user_ids = array_map(
'intval',
ilUtil::_sortIds($booked_user_ids,
'usr_data',
'lastname',
'usr_id'));
160 $data[$counter][
'participants'] =
'';
162 foreach ($booked_user_ids as $user_id) {
163 if (!$user_counter) {
165 $data[$counter][
'participants'] =
$name[
'lastname'];
170 $data[$counter][
'bookings'] = $users;
171 $data[$counter][
'num_bookings'] = $booking->getNumberOfBookings();
173 $data[$counter][
'group'] =
'';
174 $group_id = $booking->getBookingGroup();
181 $obj_ids = array_map(
183 ilUtil::_sortIds($booking->getTargetObjIds(),
'object_data',
'title',
'obj_id')
185 foreach ($obj_ids as $obj_id) {
static lookupTitle(int $a_group_id)
Lookup group title.
__construct(object $a_gui, string $a_cmd, int $a_user_id)
enable(string $a_module_name)
setFormAction(string $a_form_action, bool $a_multipart=false)
getCurrentBookings(int $a_entry_id)
get current bookings
static _lookupFullname(int $a_user_id)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static _getPreferences(int $user_id)
get preferences for user
static _getAllReferences(int $id)
get all reference ids for object ID
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupName(int $a_user_id)
lookup user name
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
static getCountGroupsOfUser(int $a_user_id)
Get number of consultation hour groups.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
static getAppointments(int $a_user_id)
Get all appointments.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static _sortIds(array $a_ids, string $a_table, string $a_field, string $a_id_name)
Function that sorts ids by a given table field using WHERE IN E.g: __sort(array(6,7),'usr_data','lastname','usr_id') => sorts by lastname.
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false)
Format a period of two dates Shows: 14.
__construct(Container $dic, ilPlugin $plugin)
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)