58 $a_pool_overall_limit,
63 $this->ctrl = $DIC->ctrl();
64 $this->lng = $DIC->language();
65 $this->access = $DIC->access();
66 $this->
user = $DIC->user();
68 $lng = $DIC->language();
69 $ilAccess = $DIC->access();
70 $this->ui_factory = $DIC->ui()->factory();
71 $this->ui_renderer = $DIC->ui()->renderer();
73 $this->ref_id = $a_ref_id;
74 $this->pool_id = $a_pool_id;
75 $this->has_schedule = $a_pool_has_schedule;
76 $this->overall_limit = $a_pool_overall_limit;
78 $this->may_edit = ($this->active_management &&
79 $ilAccess->checkAccess(
'write',
'', $this->ref_id));
80 $this->may_assign = ($this->active_management &&
81 $ilAccess->checkAccess(
'write',
'', $this->ref_id));
85 $this->
setId(
"bkobj");
93 $this->
addColumn($this->lng->txt(
"title"),
"title");
97 $this->
addColumn($cols[$col][
"txt"], $col);
100 if (!$this->has_schedule) {
101 $this->
addColumn($this->lng->txt(
"available"));
104 $this->
addColumn($this->lng->txt(
"actions"));
108 $this->
setRowTemplate(
"tpl.booking_object_row.html",
"Modules/BookingManager");
122 return $this->record_gui;
134 $lng->txt(
"title") .
"/" .
$lng->txt(
"description")
136 $this->filter[
"title"] =
$title->getValue();
139 if ($this->has_schedule) {
145 $lng->txt(
"book_period")
147 $this->filter[
"period"] = $period->getValue();
162 if ($this->has_schedule) {
164 $limit = strtotime(
"+1year");
165 foreach (
$data as $idx => $item) {
167 $av_from = ($schedule->getAvailabilityFrom() && !$schedule->getAvailabilityFrom()->isNull())
168 ? $schedule->getAvailabilityFrom()->get(
IL_CAL_UNIX)
170 $av_to = ($schedule->getAvailabilityTo() && !$schedule->getAvailabilityTo()->isNull())
171 ? strtotime($schedule->getAvailabilityTo()->get(
IL_CAL_DATE) .
" 23:59:59")
173 if (($av_from && $av_from >
$limit)) {
176 if ($av_from > $now) {
182 $this->lng->loadLanguageModule(
"dateplaner");
183 $data[$idx][
"full_up"] = $this->lng->txt(
"cal_booked_out");
189 foreach (
$data as $idx => $item) {
190 $item_id = $item[
"booking_object_id"];
193 if (is_object($this->filter[
"period"][
"from"]) ||
194 is_object($this->filter[
"period"][
"to"])) {
195 $from = is_object($this->filter[
"period"][
"from"])
196 ? strtotime($this->filter[
"period"][
"from"]->
get(
IL_CAL_DATE) .
" 00:00:00")
198 $to = is_object($this->filter[
"period"][
"to"])
199 ? strtotime($this->filter[
"period"][
"to"]->
get(
IL_CAL_DATE) .
" 23:59:59")
213 $this->reservations[$item_id] = $item_rsv[
"data"];
216 if (!$this->has_schedule &&
217 $this->overall_limit) {
218 $this->current_bookings = 0;
219 foreach ($this->reservations as $obj_rsv) {
220 foreach ($obj_rsv as $item) {
222 if ($item[
"user_id"] ==
$ilUser->getId()) {
223 $this->current_bookings++;
229 if ($this->current_bookings >= $this->overall_limit) {
237 $this->record_gui->setTableGUI($this);
238 $this->record_gui->parse();
249 $this->record_gui->getFilterElements()
259 if (substr($a_field, 0, 3) ==
"md_") {
260 $md_id = (int) substr($a_field, 3);
272 $cols[
"description"] = array(
273 "txt" => $this->lng->txt(
"description"),
277 foreach ($this->advmd as $field) {
278 $cols[
"advmd" . $field[
"id"]] = array(
279 "txt" => $field[
"title"],
297 $has_booking =
false;
298 $booking_possible =
true;
299 $assign_possible =
true;
300 $has_reservations =
false;
304 $this->tpl->setVariable(
"TXT_TITLE", $a_set[
"title"]);
306 if (in_array(
"description", $selected)) {
307 $this->tpl->setVariable(
"TXT_DESC", nl2br($a_set[
"description"]));
310 if ($a_set[
"full_up"]) {
311 $this->tpl->setVariable(
"NOT_YET", $a_set[
"full_up"]);
312 $booking_possible =
false;
313 $assign_possible =
false;
314 } elseif ($a_set[
"not_yet"]) {
315 $this->tpl->setVariable(
"NOT_YET", $a_set[
"not_yet"]);
318 if (!$this->has_schedule) {
320 foreach ($this->reservations[$a_set[
"booking_object_id"]] as $item) {
324 if ($item[
"user_id"] ==
$ilUser->getId()) {
328 $has_reservations =
true;
332 $this->tpl->setVariable(
"VALUE_AVAIL", $a_set[
"nr_items"] - $cnt);
333 $this->tpl->setVariable(
"VALUE_AVAIL_ALL", $a_set[
"nr_items"]);
335 if ($a_set[
"nr_items"] <= $cnt || ($this->overall_limit && $this->current_bookings && $this->current_bookings >= $this->overall_limit)) {
336 $booking_possible =
false;
339 $booking_possible =
false;
341 if ($a_set[
"nr_items"] <= $cnt) {
342 $assign_possible =
false;
344 } elseif (!$this->may_edit) {
345 foreach ($this->reservations[$a_set[
"booking_object_id"]] as $item) {
347 $item[
"user_id"] ==
$ilUser->getId()) {
356 $ilCtrl->setParameter($this->parent_obj,
'object_id', $a_set[
'booking_object_id']);
358 if ($booking_possible) {
359 if (is_object($this->filter[
'period'][
'from'])) {
360 $ilCtrl->setParameter($this->parent_obj,
'sseed', $this->filter[
'period'][
'from']->
get(
IL_CAL_DATE));
363 $items[] = $this->ui_factory->button()->shy(
364 $lng->txt(
'book_book'),
365 $ilCtrl->getLinkTargetByClass(
"ilbookingprocessgui",
'book')
368 $ilCtrl->setParameter($this->parent_obj,
'sseed',
'');
372 if (!$this->has_schedule && $has_booking) {
373 if (trim($a_set[
'post_text']) || $a_set[
'post_file']) {
374 $items[] = $this->ui_factory->button()->shy(
375 $lng->txt(
'book_post_booking_information'),
376 $ilCtrl->getLinkTargetByClass(
"ilbookingprocessgui",
'displayPostInfo')
379 $ilCtrl->setParameterByClass(
"ilbookingreservationsgui",
'object_id', $a_set[
'booking_object_id']);
380 $items[] = $this->ui_factory->button()->shy(
$lng->txt(
'book_set_cancel'),
$ilCtrl->getLinkTargetByClass(
"ilbookingreservationsgui",
'rsvConfirmCancelUser'));
381 $ilCtrl->setParameterByClass(
"ilbookingreservationsgui",
'object_id',
"");
384 if ($this->may_edit || $has_booking) {
385 $ilCtrl->setParameterByClass(
'ilBookingReservationsGUI',
'object_id', $a_set[
'booking_object_id']);
386 $items[] = $this->ui_factory->button()->shy(
387 $lng->txt(
'book_log'),
388 $ilCtrl->getLinkTargetByClass(
'ilBookingReservationsGUI',
'log')
390 $ilCtrl->setParameterByClass(
'ilBookingReservationsGUI',
'object_id',
'');
393 if ($this->may_assign && $assign_possible) {
399 if (is_object($this->filter[
'period'][
'from'])) {
401 "ilbookingprocessgui",
407 $items[] = $this->ui_factory->button()->shy(
408 $lng->txt(
'book_assign_participant'),
409 $ilCtrl->getLinkTargetByClass(
"ilbookingprocessgui",
'assignParticipants')
412 $ilCtrl->setParameterByClass(
"ilbookingprocessgui",
'sseed',
'');
416 if ($a_set[
'info_file']) {
417 $items[] = $this->ui_factory->button()->shy(
$lng->txt(
'book_download_info'),
$ilCtrl->getLinkTarget($this->parent_obj,
'deliverInfo'));
420 if ($this->may_edit) {
421 $items[] = $this->ui_factory->button()->shy(
$lng->txt(
'edit'),
$ilCtrl->getLinkTarget($this->parent_obj,
'edit'));
424 if (!$has_reservations) {
425 $items[] = $this->ui_factory->button()->shy(
$lng->txt(
'delete'),
$ilCtrl->getLinkTarget($this->parent_obj,
'confirmDelete'));
430 foreach ($this->advmd as $item) {
431 $advmd_id = (int) $item[
"id"];
433 if (!in_array(
"advmd" . $advmd_id, $selected)) {
438 if (isset($a_set[
"md_" . $advmd_id .
"_presentation"])) {
439 $pb = $a_set[
"md_" . $advmd_id .
"_presentation"]->getList();
445 $this->tpl->setCurrentBlock(
"advmd_bl");
446 $this->tpl->setVariable(
"ADVMD_VAL", $val);
447 $this->tpl->parseCurrentBlock();
451 if (
sizeof($items)) {
452 $actions_dropdown = $this->ui_factory->dropdown()->standard($items)->withLabel($this->lng->txt(
'actions'));
453 $this->tpl->setVariable(
"ACTION_DROPDOWN", $this->ui_renderer->render($actions_dropdown));
static getList($a_pool_id, $a_title=null)
Get list of booking objects for given type.
schedule for booking ressource
addFilterItemByMetaType($id, $type=self::FILTER_TEXT, $a_optional=false, $caption=null)
Add filter by standard type.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
getAdvMDRecordGUI()
needed for advmd filter handling
fillRow($a_set)
Fill table row.
__construct( $a_parent_obj, $a_parent_cmd, $a_ref_id, $a_pool_id, $a_pool_has_schedule, $a_pool_overall_limit, bool $active_management=true)
Constructor.
getSelectedColumns()
Get selected columns.
static getList($a_object_ids, $a_limit=10, $a_offset=0, array $filter=[])
List all reservations.
List booking objects (for booking type)
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
static isObjectAvailableInPeriod($a_obj_id, ilBookingSchedule $a_schedule, $a_from, $a_to)
__construct(Container $dic, ilPlugin $plugin)
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.
getItems()
Gather data and build rows.
setEnableHeader($a_enableheader)
Set Enable Header.
setMaxCount($a_max_count)
set max.
static getAdvancedMDFields($a_ref_id)
static queryForRecords($adv_rec_obj_ref_id, $adv_rec_obj_type, $adv_rec_obj_subtype, $a_obj_id, $a_subtype, $a_records, $a_obj_id_key, $a_obj_subid_key, array $a_amet_filter=null)
Query data for given object records.
numericOrdering($a_field)