3 declare(strict_types=1);
31 public function __construct(
object $a_parent_obj,
string $a_parent_cmd,
int $a_user_id)
33 $this->user_id = $a_user_id;
34 $this->
setId(
'chboo_' . $this->user_id);
46 $this->
setRowTemplate(
'tpl.ch_booking_row.html',
'Services/Calendar');
48 $this->
setTitle($this->
lng->txt(
'cal_ch_bookings_tbl'));
54 $this->
addColumn($this->
lng->txt(
'cal_ch_booking_message_tbl'),
'comment');
65 $this->
addMultiCommand(
'confirmRejectBooking', $this->
lng->txt(
'cal_ch_reject_booking'));
66 $this->
addMultiCommand(
'confirmDeleteBooking', $this->
lng->txt(
'cal_ch_delete_booking'));
72 protected function fillRow(array $a_set): void
74 $this->tpl->setVariable(
'START', $a_set[
'start_str']);
75 $this->tpl->setVariable(
'NAME', $a_set[
'name']);
76 $this->tpl->setVariable(
'COMMENT', $a_set[
'comment']);
77 $this->tpl->setVariable(
'TITLE', $a_set[
'title']);
78 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
81 $list->setId(
'act_chboo_' . $a_set[
'id']);
82 $list->setListTitle($this->
lng->txt(
'actions'));
89 $this->
lng->txt(
'cal_ch_reject_booking'),
95 $this->
lng->txt(
'cal_ch_delete_booking'),
99 $this->tpl->setVariable(
'ACTIONS', $list->getHTML());
106 public function parse(array $appointments): void
110 foreach ($appointments as
$app) {
118 $this->
ctrl->getLinkTarget($this->getParentObject(), $this->
getParentCmd()),
124 $rows[$counter][
'comment'] =
'';
128 $rows[$counter][
'title'] = $cal_entry->getTitle();
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
enable(string $a_module_name)
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
setFormAction(string $a_form_action, bool $a_multipart=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
setDefaultOrderField(string $a_defaultorderfield)
static _after(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is after end This method does not consider tz offsets.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
parse(array $appointments)
Parse Groups.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__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)
static lookupBookingMessage(int $a_entry_id, int $a_usr_id)
addMultiCommand(string $a_cmd, string $a_text)
static lookupBookingsForAppointment(int $a_app_id)
Lookup booked users for appointment.
__construct(object $a_parent_obj, string $a_parent_cmd, int $a_user_id)