33 protected \ILIAS\DI\UIServices
$ui;
34 protected \ilObjAdministrativeNotificationAccess
$access;
50 $this->
ctrl = $DIC->ctrl();
51 $this->
lng = $DIC->language();
52 $this->data_factory =
new Factory();
53 $this->
ui = $DIC->ui();
56 $this->
setId(
'msg_msg_table');
57 $this->
setRowTemplate(
'Services/AdministrativeNotification/templates/default/tpl.row.html');
64 $this->
addColumn($this->
lng->txt(
'msg_type_during_event'));
65 $this->
addColumn($this->
lng->txt(
'msg_event_date_start'));
67 $this->
addColumn($this->
lng->txt(
'msg_display_date_start'));
68 $this->
addColumn($this->
lng->txt(
'msg_display_date_end'));
84 protected function fillRow(array $a_set):
void 89 $notification = ilADNNotification::find($a_set[
'id']);
90 $this->tpl->setVariable(
'TITLE', $notification->getTitle());
91 $this->tpl->setVariable(
'TYPE', $this->
lng->txt(
'msg_type_' . $notification->getType()));
93 if (!$notification->isPermanent()) {
94 $this->tpl->setVariable(
96 $this->
lng->txt(
'msg_type_' . $notification->getTypeDuringEvent())
98 $this->tpl->setVariable(
'EVENT_START', $this->
formatDate($notification->getEventStart()));
99 $this->tpl->setVariable(
'EVENT_END', $this->
formatDate($notification->getEventEnd()));
100 $this->tpl->setVariable(
'DISPLAY_START', $this->
formatDate($notification->getDisplayStart()));
101 $this->tpl->setVariable(
'DISPLAY_END', $this->
formatDate($notification->getDisplayEnd()));
104 if ($this->
access->hasUserPermissionTo(
'write')) {
108 $items[] = $this->
ui->factory()->button()->shy(
114 $ditem = $this->
ui->factory()->modal()->interruptiveItem((
string) $notification->getId(), $notification->getTitle());
117 ->withOnClick($delete_modal->getShowSignal());
118 $this->modals[] = $delete_modal;
122 ->withOnClick($reset_modal->getShowSignal());
123 $this->modals[] = $reset_modal;
125 $actions = $this->
ui->renderer()->render([$this->
ui->factory()->dropdown()->standard($items)->withLabel($this->
lng->txt(
'actions'))]);
127 $this->tpl->setVariable(
'ACTIONS', $actions);
129 $this->tpl->setVariable(
'ACTIONS',
"");
135 $action = $this->
ctrl->getLinkTargetByClass(ilADNNotificationGUI::class, $cmd);
137 return $this->
ui->factory()->modal()
139 $this->
lng->txt(
'btn_' . $cmd),
140 $this->
lng->txt(
'btn_' . $cmd .
'_confirm'),
143 ->withAffectedItems([$i])
144 ->withActionButtonLabel($cmd);
149 return parent::getHTML() . $this->
ui->renderer()->render($this->modals);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getArray(?string $key=null, $values=null)
setFormAction(string $a_form_action, bool $a_multipart=false)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
modal(InterruptiveItem $i, string $cmd)
formatDate(DateTimeImmutable $timestamp)
fillRow(array $a_set)
Standard Version of Fill Row.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
foreach($mandatory_scripts as $file) $timestamp
ilObjAdministrativeNotificationAccess $access
__construct(Container $dic, ilPlugin $plugin)
Class ilADNNotificationTableGUI.
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)
ILIAS Data Factory $data_factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(?object $a_parent_obj, string $a_parent_cmd="", string $a_template_context="")
Interface InterruptiveItem.