ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilForumNotificationTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  private array $notification_modals = [];
29  private readonly \ILIAS\UI\Factory $ui_factory;
30  private readonly ILIAS\UI\Renderer $ui_renderer;
31 
32  public function __construct(ilForumSettingsGUI $settings_gui, string $cmd, string $type)
33  {
34  global $DIC;
35 
36  $this->ui_factory = $DIC->ui()->factory();
37  $this->ui_renderer = $DIC->ui()->renderer();
38 
39  $this->lng = $DIC->language();
40  $this->ctrl = $DIC->ctrl();
41 
42  $this->setId('frmev_' . $settings_gui->getRefId() . substr($type, 0, 3));
43 
44  parent::__construct($settings_gui, $cmd);
45 
46  $this->setTitle($this->lng->txt(strtolower($type)));
47  $this->setRowTemplate('tpl.forums_members_row.html', 'components/ILIAS/Forum');
48  $this->setFormAction($this->ctrl->getFormAction($settings_gui, 'showMembers'));
49 
50  $this->addColumn('', '', '1%', true);
51  $this->addColumn($this->lng->txt('login'), '', '20%');
52  $this->addColumn($this->lng->txt('firstname'), '', '20%');
53  $this->addColumn($this->lng->txt('lastname'), '', '20%');
54  $this->addColumn($this->lng->txt('allow_user_toggle_noti'), '', '20%');
55  $this->addColumn($this->lng->txt('actions'), '', '20%');
56  $this->setSelectAllCheckbox('user_id');
57 
58  $this->addMultiCommand('enableHideUserToggleNoti', $this->lng->txt('enable_hide_user_toggle'));
59  $this->addMultiCommand('disableHideUserToggleNoti', $this->lng->txt('disable_hide_user_toggle'));
60  }
61 
62  private function getIcon(int $user_toggle_noti): string
63  {
64  $icon_ok = $this->ui_factory->symbol()->icon()->custom(
65  ilUtil::getImagePath('standard/icon_ok.svg'),
66  $this->lng->txt('enabled')
67  );
68  $icon_not_ok = $this->ui_factory->symbol()->icon()->custom(
69  ilUtil::getImagePath('standard/icon_not_ok.svg'),
70  $this->lng->txt('disabled')
71  );
72  $icon = $user_toggle_noti === 0 ? $icon_ok : $icon_not_ok;
73 
74  return $this->ui_renderer->render($icon);
75  }
76 
77  protected function fillRow(array $a_set): void
78  {
79  $this->tpl->setVariable('VAL_USER_ID', $a_set['user_id']);
80  $this->tpl->setVariable('VAL_LOGIN', $a_set['login']);
81  $this->tpl->setVariable('VAL_FIRSTNAME', $a_set['firstname']);
82  $this->tpl->setVariable('VAL_LASTNAME', $a_set['lastname']);
83 
84  $icon_ok = $this->getIcon((int) $a_set['user_toggle_noti']);
85  $this->tpl->setVariable('VAL_USER_TOGGLE_NOTI', $icon_ok);
86 
87  $this->populateWithModal($a_set);
88  }
89 
91  {
92  $interested_events = $row['interested_events'];
93 
95  $this->ctrl->getFormAction($this->parent_obj, 'saveEventsForUser'),
96  [
97  'hidden_value' => json_encode([
98  'usr_id' => $row['usr_id_events']
99  ], JSON_THROW_ON_ERROR),
100  'notify_modified' => (bool) ($interested_events & ilForumNotificationEvents::UPDATED),
101  'notify_censored' => (bool) ($interested_events & ilForumNotificationEvents::CENSORED),
102  'notify_uncensored' => (bool) ($interested_events & ilForumNotificationEvents::UNCENSORED),
103  'notify_post_deleted' => (bool) ($interested_events & ilForumNotificationEvents::POST_DELETED),
104  'notify_thread_deleted' => (bool) ($interested_events & ilForumNotificationEvents::THREAD_DELETED),
105  ],
107  $this->lng
108  );
109  }
110 
111  private function populateWithModal(array $row): void
112  {
113  $notificationsModal = $this->ui_factory->modal()->roundtrip(
114  $this->lng->txt('notification_settings'),
115  $this->eventsFormBuilder($row)->build()
116  )->withActionButtons([
117  $this->ui_factory->button()
118  ->primary($this->lng->txt('save'), '#')
119  ->withOnLoadCode(function (string $id): string {
120  return "
121  (function () {
122  const button = document.getElementById('$id');
123  if (!button) return;
124 
125  const modalDialog = button.closest('.modal-dialog');
126  if (!modalDialog) return;
127 
128  const form = modalDialog.querySelector('.modal-body form');
129  if (!form) return;
130 
131  form.classList.add('ilForumNotificationSettingsForm');
132  button.addEventListener('click', (event) => {
133  event.preventDefault();
134  if (form) {
135  form.submit();
136  }
137  }, true);
138  }());
139  ";
140  })
141  ]);
142 
143  $showNotificationSettingsBtn = $this->ui_factory->button()
144  ->shy($this->lng->txt('notification_settings'), '#')
145  ->withOnClick(
146  $notificationsModal->getShowSignal()
147  );
148 
149  $this->notification_modals[] = $notificationsModal;
150 
151  $this->tpl->setVariable('VAL_NOTIFICATION', $this->ui_renderer->render($showNotificationSettingsBtn));
152  }
153 
154  public function render(): string
155  {
156  return parent::render() . $this->ui_renderer->render($this->notification_modals);
157  }
158 }
setFormAction(string $a_form_action, bool $a_multipart=false)
__construct(ilForumSettingsGUI $settings_gui, string $cmd, string $type)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
Class ilForumSettingsGUI.
ilLanguage $lng
setId(string $a_val)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
Class ilForumNotificationTableGUI.
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)
addMultiCommand(string $a_cmd, string $a_text)