ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBookingSchedulesTableGUI.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  protected \ILIAS\BookingManager\InternalGUIService $gui;
26  protected \ILIAS\BookingManager\InternalDomainService $domain;
27  protected \ILIAS\BookingManager\Access\AccessManager $access;
29  protected int $ref_id;
30 
31  public function __construct(
32  object $a_parent_obj,
33  string $a_parent_cmd,
34  int $a_ref_id
35  ) {
36  global $DIC;
37 
38  $this->ctrl = $DIC->ctrl();
39  $this->lng = $DIC->language();
40  $this->access = $DIC->bookingManager()->internal()->domain()->access();
41  $this->obj_data_cache = $DIC["ilObjDataCache"];
42  $ilCtrl = $DIC->ctrl();
43  $ilObjDataCache = $DIC["ilObjDataCache"];
44 
45  $this->ref_id = $a_ref_id;
46  $this->setId("bksd");
47 
48  parent::__construct($a_parent_obj, $a_parent_cmd);
49 
50  $this->addColumn($this->lng->txt("title"), "title");
51  $this->addColumn($this->lng->txt("book_is_used"));
52  $this->addColumn($this->lng->txt("actions"));
53 
54  $this->setEnableHeader(true);
55  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj, $a_parent_cmd));
56  $this->setRowTemplate("tpl.booking_schedule_row.html", "components/ILIAS/BookingManager");
57  $this->domain = $DIC
58  ->bookingManager()
59  ->internal()
60  ->domain();
61  $this->gui = $DIC
62  ->bookingManager()
63  ->internal()
64  ->gui();
65 
66  $this->getItems($ilObjDataCache->lookupObjId($this->ref_id));
67  }
68 
73  public function getItems(int $a_pool_id): void
74  {
75  $data = $this->domain->schedules($a_pool_id)->getScheduleData();
76 
77  $this->setMaxCount(count($data));
78  $this->setData($data);
79  }
80 
81  protected function fillRow(array $a_set): void
82  {
83  $lng = $this->lng;
84  $ilCtrl = $this->ctrl;
85  $ui_factory = $this->gui->ui()->factory();
86  $ui_renderer = $this->gui->ui()->renderer();
87 
88  $this->tpl->setVariable("TXT_TITLE", $a_set["title"]);
89 
90  if ($a_set["is_used"]) {
91  $this->tpl->setVariable("TXT_IS_USED", $lng->txt("yes"));
92  } else {
93  $this->tpl->setVariable("TXT_IS_USED", $lng->txt("no"));
94  }
95 
96  $ilCtrl->setParameter($this->parent_obj, 'schedule_id', $a_set['booking_schedule_id']);
97 
98  $actions = [];
99 
100  if ($this->access->canManageSettings($this->ref_id)) {
101  $actions[] = $ui_factory->link()->standard(
102  $lng->txt('edit'),
103  $ilCtrl->getLinkTarget($this->parent_obj, 'edit')
104  );
105 
106  if (!$a_set["is_used"]) {
107  $actions[] = $ui_factory->link()->standard(
108  $lng->txt('delete'),
109  $ilCtrl->getLinkTarget($this->parent_obj, 'confirmDelete')
110  );
111  }
112  }
113 
114  if (count($actions) > 0) {
115  $dd = $ui_factory->dropdown()->standard($actions);
116  $this->tpl->setVariable("LAYER", $ui_renderer->render($dd));
117  }
118  }
119 }
setData(array $a_data)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setFormAction(string $a_form_action, bool $a_multipart=false)
ilLanguage $lng
setId(string $a_val)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS BookingManager InternalDomainService $domain
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
getItems(int $a_pool_id)
Build summary item rows for given object and filter(s)
ILIAS BookingManager Access AccessManager $access
__construct(object $a_parent_obj, string $a_parent_cmd, int $a_ref_id)
__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)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
ILIAS BookingManager InternalGUIService $gui
setEnableHeader(bool $a_enableheader)
setMaxCount(int $a_max_count)
set max.