30 public function __construct($a_parent_obj, $a_parent_cmd, $a_ref_id)
34 $this->ctrl = $DIC->ctrl();
35 $this->lng = $DIC->language();
36 $this->access = $DIC->access();
37 $this->obj_data_cache = $DIC[
"ilObjDataCache"];
39 $lng = $DIC->language();
40 $ilAccess = $DIC->access();
41 $lng = $DIC->language();
42 $ilObjDataCache = $DIC[
"ilObjDataCache"];
44 $this->ref_id = $a_ref_id;
49 $this->
addColumn($this->lng->txt(
"title"),
"title");
50 $this->
addColumn($this->lng->txt(
"book_is_used"));
51 $this->
addColumn($this->lng->txt(
"actions"));
55 $this->
setRowTemplate(
"tpl.booking_schedule_row.html",
"Modules/BookingManager");
57 $this->
getItems($ilObjDataCache->lookupObjId($this->ref_id));
83 $this->tpl->setVariable(
"TXT_TITLE", $a_set[
"title"]);
85 if ($a_set[
"is_used"]) {
86 $this->tpl->setVariable(
"TXT_IS_USED",
$lng->txt(
"yes"));
88 $this->tpl->setVariable(
"TXT_IS_USED",
$lng->txt(
"no"));
91 $ilCtrl->setParameter($this->parent_obj,
'schedule_id', $a_set[
'booking_schedule_id']);
94 $alist->setId($a_set[
'booking_schedule_id']);
95 $alist->setListTitle(
$lng->txt(
"actions"));
97 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
98 $alist->addItem(
$lng->txt(
'edit'),
'edit',
$ilCtrl->getLinkTarget($this->parent_obj,
'edit'));
100 if (!$a_set[
"is_used"]) {
101 $alist->addItem(
$lng->txt(
'delete'),
'delete',
$ilCtrl->getLinkTarget($this->parent_obj,
'confirmDelete'));
105 $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.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__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.
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.