48 $this->ctrl = $DIC->ctrl();
49 $this->lng = $DIC->language();
50 $this->data_factory =
new Factory();
51 $this->
ui = $DIC->ui();
54 $this->
setId(
'msg_msg_table');
55 $this->
setRowTemplate(
'Services/AdministrativeNotification/templates/default/tpl.row.html');
57 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj));
60 $this->
addColumn($this->lng->txt(
'msg_title'));
61 $this->
addColumn($this->lng->txt(
'msg_type'));
62 $this->
addColumn($this->lng->txt(
'msg_type_during_event'));
63 $this->
addColumn($this->lng->txt(
'msg_event_date_start'));
64 $this->
addColumn($this->lng->txt(
'msg_event_date_end'));
65 $this->
addColumn($this->lng->txt(
'msg_display_date_start'));
66 $this->
addColumn($this->lng->txt(
'msg_display_date_end'));
67 $this->
addColumn($this->lng->txt(
'common_actions'));
82 protected function fillRow($a_set)
87 $notification = ilADNNotification::find($a_set[
'id']);
88 $this->tpl->setVariable(
'TITLE', $notification->getTitle());
89 $this->tpl->setVariable(
'TYPE', $this->lng->txt(
'msg_type_' . $notification->getType()));
91 if (!$notification->isPermanent()) {
92 $this->tpl->setVariable(
94 $this->lng->txt(
'msg_type_' . $notification->getTypeDuringEvent())
96 $this->tpl->setVariable(
'EVENT_START', $this->
formatDate($notification->getEventStart()));
97 $this->tpl->setVariable(
'EVENT_END', $this->
formatDate($notification->getEventEnd()));
98 $this->tpl->setVariable(
'DISPLAY_START', $this->
formatDate($notification->getDisplayStart()));
99 $this->tpl->setVariable(
'DISPLAY_END', $this->
formatDate($notification->getDisplayEnd()));
102 if ($this->access->hasUserPermissionTo(
'write')) {
106 $items[] = $this->
ui->factory()->button()->shy(
112 $ditem = $this->
ui->factory()->modal()->interruptiveItem($notification->getId(), $notification->getTitle());
115 ->withOnClick($delete_modal->getShowSignal());
116 $this->modals[] = $delete_modal;
120 ->withOnClick($reset_modal->getShowSignal());
121 $this->modals[] = $reset_modal;
123 $actions = $this->
ui->renderer()->render([$this->
ui->factory()->dropdown()->standard($items)->withLabel($this->lng->txt(
'actions'))]);
125 $this->tpl->setVariable(
'ACTIONS', $actions);
127 $this->tpl->setVariable(
'ACTIONS',
"");
133 $action = $this->ctrl->getLinkTargetByClass(ilADNNotificationGUI::class, $cmd);
134 $modal = $this->
ui->factory()->modal()
136 $this->lng->txt(
'btn_' . $cmd),
137 $this->lng->txt(
'btn_' . $cmd .
'_confirm'),
140 ->withAffectedItems([$i])
141 ->withActionButtonLabel($cmd);
148 return parent::getHTML() . $this->
ui->renderer()->render($this->modals);
Class ilADNNotificationGUI ilADNNotificationGUI: ilObjAdministrativeNotificationGUI ilADNNotificati...
__construct($a_parent_obj, $a_parent_cmd="", $a_template_context="")
ilTable2GUI constructor.
modal(InterruptiveItem $i, string $cmd)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
formatDate(DateTimeImmutable $timestamp)
setRowTemplate($a_template, $a_template_dir="")
Set row template.
foreach($mandatory_scripts as $file) $timestamp
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.
Class ilADNNotificationTableGUI.
static getArray($key=null, $values=null)
Class ilObjAdministrativeNotificationAccess.
fillRow($a_set)
Standard Version of Fill Row.
Interface InterruptiveItem.