ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjNotificationAdminGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
32 {
33  protected Container $dic;
34 
35  public function __construct($a_data, int $a_id = 0, bool $a_call_by_reference = true, bool $a_prepare_output = true)
36  {
37  global $DIC;
38 
39  $this->dic = $DIC;
40 
41  $this->type = 'nota';
42  parent::__construct($a_data, $a_id, $a_call_by_reference, false);
43  $this->lng->loadLanguageModule('notifications_adm');
44  }
45 
46  public function executeCommand(): void
47  {
48  if (!$this->rbac_system->checkAccess('visible,read', $this->object->getRefId())) {
49  $this->error->raiseError($this->lng->txt('no_permission'), $this->error->WARNING);
50  }
51 
52  $this->prepareOutput();
53  $this->tabs_gui->activateTab('settings');
54 
55  switch (strtolower($this->ctrl->getNextClass())) {
56  case strtolower(ilPermissionGUI::class):
57  $perm_gui = new ilPermissionGUI($this);
58  $this->ctrl->forwardCommand($perm_gui);
59  break;
60  default:
61  match ($this->ctrl->getCmd()) {
62  'saveOSDSettings' => $this->saveOSDSettings(),
63  // no break
64  default => $this->showOSDSettings(),
65  };
66  }
67  }
68 
69  public function getAdminTabs(): void
70  {
71  if ($this->checkPermissionBool('visible,read')) {
72  $this->tabs_gui->addTab(
73  'settings',
74  $this->lng->txt('settings'),
75  $this->ctrl->getLinkTarget($this, 'editSettings')
76  );
77  }
78 
79  if ($this->checkPermissionBool('edit_permission')) {
80  $this->tabs_gui->addTab(
81  'perm_settings',
82  $this->lng->txt('perm_settings'),
83  $this->ctrl->getLinkTargetByClass([$this::class, ilPermissionGUI::class], 'perm')
84  );
85  }
86  }
87 
91  public function showOSDSettings(?Form $form = null): void
92  {
93  if ($form === null) {
94  $settings = new ilSetting('notifications');
95  $values = [];
96  if ($settings->get('enable_osd') === '0' || $settings->get('enable_osd') === null) {
97  $values['enable_osd'] = null;
98  } else {
99  $values['enable_osd'] = [
100  'osd_interval' => (int) $settings->get('osd_interval'),
101  'osd_play_sound' => (bool) $settings->get('osd_play_sound'),
102  ];
103  }
104  $form = $this->getForm($values);
105  }
106 
107  $this->tpl->setContent($this->dic->ui()->renderer()->render($form));
108  }
109 
113  public function saveOSDSettings(): void
114  {
115  if (!$this->checkPermissionBool('write')) {
116  $this->error->raiseError($this->lng->txt('permission_denied'), $this->error->MESSAGE);
117  }
118 
119  $settings = new ilSetting('notifications');
120 
121  $form = $this->getForm()->withRequest($this->dic->http()->request());
122  $data = $form->getData();
123  if (isset($data['osd']) && is_array($data['osd'])) {
124  if (!isset($data['osd']['enable_osd'])) {
125  global $DIC;
126  $DIC->notifications()->system()->clear('osd');
127  $settings->set('enable_osd', '0');
128  $settings->delete('osd_interval');
129  $settings->delete('osd_play_sound');
130  } else {
131  $settings->set('enable_osd', '1');
132  $settings->set('osd_interval', ((string) $data['osd']['enable_osd']['osd_interval']));
133  $settings->set('osd_play_sound', ($data['osd']['enable_osd']['osd_play_sound']) ? '1' : '0');
134  }
135  }
136  $this->showOSDSettings($form);
137  }
138 
143  protected function getForm(?array $values = null): Form
144  {
145  $enable_osd = $this->dic->ui()->factory()->input()->field()->optionalGroup(
146  [
147  'osd_interval' => $this->dic->ui()->factory()->input()->field()->numeric(
148  $this->lng->txt('osd_interval'),
149  $this->lng->txt('osd_interval_desc')
150  )
151  ->withRequired(true)
152  ->withValue(60000)
153  ->withAdditionalTransformation($this->dic->refinery()->custom()->constraint(
154  static function ($value) {
155  return $value >= 3000;
156  },
157  $this->lng->txt('osd_error_refresh_interval_too_small')
158  )),
159  'osd_play_sound' => $this->dic->ui()->factory()->input()->field()->checkbox(
160  $this->lng->txt('osd_play_sound'),
161  $this->lng->txt('osd_play_sound_desc')
162  )
163  ],
164  $this->lng->txt('enable_osd')
165  )->withByline($this->lng->txt('enable_osd_desc'));
166 
167  if ($values !== null) {
168  $enable_osd = $enable_osd->withValue($values['enable_osd'] ?? null);
169  }
170 
171  return $this->dic->ui()->factory()->input()->container()->form()->standard(
172  $this->ctrl->getFormAction($this, 'saveOSDSettings'),
173  [
174  'osd' => $this->dic->ui()->factory()->input()->field()->section(
175  ['enable_osd' => $enable_osd],
176  $this->lng->txt('osd_settings')
177  )
178  ]
179  );
180  }
181 }
delete(string $a_keyword)
This describes commonalities between all forms.
Definition: Form.php:32
get(string $a_keyword, ?string $a_default_value=null)
get setting
prepareOutput(bool $show_sub_objects=true)
set(string $a_key, string $a_val)
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilObjectGUI Basic methods of all Output classes.
global $DIC
Definition: shib_login.php:22
__construct($a_data, int $a_id=0, bool $a_call_by_reference=true, bool $a_prepare_output=true)
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
__construct(Container $dic, ilPlugin $plugin)
ilSetting $settings