19 declare(strict_types=1);
35 public function __construct($a_data,
int $a_id = 0,
bool $a_call_by_reference =
true,
bool $a_prepare_output =
true)
43 $this->
lng->loadLanguageModule(
'notifications_adm');
48 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
49 $this->error->raiseError($this->
lng->txt(
'no_permission'), $this->error->WARNING);
53 $this->tabs_gui->activateTab(
'settings');
55 switch (strtolower($this->
ctrl->getNextClass())) {
56 case strtolower(ilPermissionGUI::class):
58 $this->
ctrl->forwardCommand($perm_gui);
61 match ($this->
ctrl->getCmd()) {
72 $this->tabs_gui->addTab(
74 $this->
lng->txt(
'settings'),
75 $this->
ctrl->getLinkTarget($this,
'editSettings')
80 $this->tabs_gui->addTab(
82 $this->
lng->txt(
'perm_settings'),
83 $this->
ctrl->getLinkTargetByClass([$this::class, ilPermissionGUI::class],
'perm')
97 $values[
'enable_osd'] =
null;
99 $values[
'enable_osd'] = [
101 'osd_play_sound' => (bool)
$settings->
get(
'osd_play_sound'),
104 $form = $this->
getForm($values);
107 $this->tpl->setContent($this->dic->ui()->renderer()->render($form));
116 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
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'])) {
126 $DIC->notifications()->system()->clear(
'osd');
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');
145 $enable_osd = $this->dic->ui()->factory()->input()->field()->optionalGroup(
147 'osd_interval' => $this->dic->ui()->factory()->input()->field()->numeric(
148 $this->
lng->txt(
'osd_interval'),
149 $this->
lng->txt(
'osd_interval_desc')
153 ->withAdditionalTransformation($this->dic->refinery()->custom()->constraint(
154 static function ($value) {
155 return $value >= 3000;
157 $this->
lng->txt(
'osd_error_refresh_interval_too_small')
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')
164 $this->
lng->txt(
'enable_osd')
165 )->withByline($this->
lng->txt(
'enable_osd_desc'));
167 if ($values !==
null) {
168 $enable_osd = $enable_osd->withValue($values[
'enable_osd'] ??
null);
171 return $this->dic->ui()->factory()->input()->container()->form()->standard(
172 $this->
ctrl->getFormAction($this,
'saveOSDSettings'),
174 'osd' => $this->dic->ui()->factory()->input()->field()->section(
175 [
'enable_osd' => $enable_osd],
176 $this->
lng->txt(
'osd_settings')
delete(string $a_keyword)
get(string $a_keyword, ?string $a_default_value=null)
get setting
prepareOutput(bool $show_sub_objects=true)
set(string $a_key, string $a_val)
getForm(?array $values=null)
Customizing of pimple-DIC for ILIAS.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilObjectGUI Basic methods of all Output classes.
showOSDSettings(?Form $form=null)
__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)