19 declare(strict_types=1);
47 public const ID_TOKEN_NS = self::TABLE_NS .
'_' . self::ID_TOKEN;
67 $this->
lng = $DIC->language();
68 $this->
user = $DIC->user();
69 $this->
ctrl = $DIC->ctrl();
71 $this->http_request = $DIC->http()->request();
72 $this->ui_factory = $DIC->ui()->factory();
74 $this->ui_renderer = $DIC->ui()->renderer();
79 array $visible_column_ids,
83 ?array $additional_parameters
85 $records = $this->provider->limitData($range, $order);
86 foreach ($records as $row) {
89 if (count($row[
'booking_participant']->getItems()) === 0) {
90 $records_row = $records_row
91 ->withDisabledAction(
'confirmCancelBooking')
92 ->withDisabledAction(
'confirmDeleteBooking')
93 ->withDisabledAction(
'sendMail');
101 return count($this->provider->getData());
106 return $this->ui_factory
110 $this->
lng->txt(
'cal_ch_ch'),
113 ->withId(self::class)
115 ->withRequest($this->http_request);
124 $uri_command_handler = $this->data_factory->uri(
125 ILIAS_HTTP_PATH .
'/' . $this->
ctrl->getLinkTargetByClass(
126 ilConsultationHoursGUI::class,
127 'handleBookingTableActions' 133 $action_parameter_token,
136 (
new URLBuilder($uri_command_handler))->acquireParameters(
143 'edit' => $this->ui_factory->table()->action()->standard(
144 $this->
lng->txt(
'edit'),
145 $url_builder->withParameter($action_parameter_token,
'edit'),
148 'searchUsersForAppointments' => $this->ui_factory->table()->action()->standard(
149 $this->
lng->txt(
'cal_ch_assign_participants'),
150 $url_builder->withParameter($action_parameter_token,
'searchUsersForAppointments'),
153 'confirmCancelBooking' => $this->ui_factory->table()->action()->single(
154 $this->
lng->txt(
'cal_ch_cancel_booking'),
155 $url_builder->withParameter($action_parameter_token,
'confirmCancelBooking'),
158 'confirmDeleteBooking' => $this->ui_factory->table()->action()->single(
159 $this->
lng->txt(
'cal_ch_delete_booking'),
160 $url_builder->withParameter($action_parameter_token,
'confirmDeleteBooking'),
163 'confirmDeleteAppointments' => $this->ui_factory->table()->action()->standard(
164 $this->
lng->txt(
'delete'),
165 $url_builder->withParameter($action_parameter_token,
'confirmDeleteAppointments'),
168 'sendMail' => $this->ui_factory->table()->action()->standard(
169 $this->
lng->txt(
'cal_ch_send_mail'),
170 $url_builder->withParameter($action_parameter_token,
'sendMail'),
182 $format = $this->data_factory->dateFormat()->withTime12($this->
user->getDateFormat());
184 $format = $this->data_factory->dateFormat()->withTime24($this->
user->getDateFormat());
188 'booking_start' => $this->ui_factory
191 ->date($this->
lng->txt(
'cal_ch_booking_start'), $format)
192 ->withIsSortable(
true),
193 'booking_duration' => $this->ui_factory
196 ->number($this->
lng->txt(
'cal_ch_minutes'))
197 ->withIsSortable(
true),
198 'booking_title' => $this->ui_factory
201 ->text($this->
lng->txt(
'title'))
202 ->withIsSortable(
true),
203 'booking_participant' => $this->ui_factory
206 ->linkListing($this->
lng->txt(
'cal_ch_booking_participants')),
207 'booking_comment' => $this->ui_factory
210 ->linkListing($this->
lng->txt(
'cal_ch_booking_col_comments')),
211 'booking_location' => $this->ui_factory
214 ->linkListing($this->
lng->txt(
'cal_ch_target_object'))
221 return $this->ui_renderer->render(
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...
BookingDataProvider $provider
Both the subject and the direction need to be specified when expressing an order. ...
buildDataRow(string $id, array $record)
__construct(BookingDataProvider $provider)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readonly DataFactory $data_factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readonly UIFactory $ui_factory
getRows(DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
This is called by the table to retrieve rows; map data-records to rows using the $row_builder e...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
A simple class to express a naive range of whole positive numbers.
readonly ServerRequestInterface $http_request