4 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
32 public function __construct($a_parent_obj, $a_parent_cmd, $a_ref_id)
36 $this->ctrl = $DIC->ctrl();
37 $this->lng = $DIC->language();
38 $this->access = $DIC->access();
39 $this->obj_data_cache = $DIC[
"ilObjDataCache"];
41 $lng = $DIC->language();
42 $ilAccess = $DIC->access();
43 $lng = $DIC->language();
44 $ilObjDataCache = $DIC[
"ilObjDataCache"];
46 $this->ref_id = $a_ref_id;
49 parent::__construct($a_parent_obj, $a_parent_cmd);
51 $this->
addColumn($this->lng->txt(
"title"),
"title");
52 $this->
addColumn($this->lng->txt(
"book_is_used"));
53 $this->
addColumn($this->lng->txt(
"actions"));
57 $this->
setRowTemplate(
"tpl.booking_schedule_row.html",
"Modules/BookingManager");
59 $this->
getItems($ilObjDataCache->lookupObjId($this->ref_id));
69 include_once
'Modules/BookingManager/classes/class.ilBookingSchedule.php';
86 $this->tpl->setVariable(
"TXT_TITLE", $a_set[
"title"]);
88 if ($a_set[
"is_used"]) {
89 $this->tpl->setVariable(
"TXT_IS_USED",
$lng->txt(
"yes"));
91 $this->tpl->setVariable(
"TXT_IS_USED",
$lng->txt(
"no"));
94 $ilCtrl->setParameter($this->parent_obj,
'schedule_id', $a_set[
'booking_schedule_id']);
96 include_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
98 $alist->setId($a_set[
'booking_schedule_id']);
99 $alist->setListTitle(
$lng->txt(
"actions"));
101 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
102 $alist->addItem(
$lng->txt(
'edit'),
'edit',
$ilCtrl->getLinkTarget($this->parent_obj,
'edit'));
104 if (!$a_set[
"is_used"]) {
105 $alist->addItem(
$lng->txt(
'delete'),
'delete',
$ilCtrl->getLinkTarget($this->parent_obj,
'confirmDelete'));
109 $this->tpl->setVariable(
"LAYER", $alist->getHTML());
fillRow($a_set)
Fill table row.
getItems($a_pool_id)
Build summary item rows for given object and filter(s)
List booking schedules (for booking pool)
__construct($a_parent_obj, $a_parent_cmd, $a_ref_id)
Constructor.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
User interface class for advanced drop-down selection lists.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
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.
setEnableHeader($a_enableheader)
Set Enable Header.
setMaxCount($a_max_count)
set max.
static getList($a_pool_id)
Get list of booking objects for given pool.