19 declare(strict_types=1);
32 public function __construct(
int $a_id = 0,
int $a_id_type = self::REPOSITORY_NODE_ID,
int $a_parent_node_id = 0)
35 $this->
lng->loadLanguageModule(
'buddysystem');
46 $this->tabs_gui->addTarget(
48 $this->
ctrl->getLinkTarget($this,
'showConfigurationForm'),
49 [
'',
'view',
'showConfigurationForm',
'saveConfigurationForm'],
55 $this->tabs_gui->addTarget(
57 $this->
ctrl->getLinkTargetByClass([self::class, ilPermissionGUI::class],
'perm'),
58 [
'perm',
'info',
'owner'],
59 ilPermissionGUI::class
66 $next_class = $this->
ctrl->getNextClass($this) ??
'';
67 $cmd = $this->
ctrl->getCmd() ??
'';
70 switch (strtolower($next_class)) {
71 case strtolower(ilPermissionGUI::class):
73 $this->
ctrl->forwardCommand($perm_gui);
77 if ($cmd ===
'' || $cmd ===
'view') {
78 $cmd =
'showConfigurationForm';
87 $notification = $this->ui_factory->input()->field()->checkbox(
88 $this->
lng->txt(
'buddy_use_osd'),
89 $this->
lng->txt(
'buddy_use_osd_info')
93 $cfg = ilNotificationDatabaseHandler::loadUserConfig(-1);
94 $checkbox = $this->ui_factory->input()->field()->optionalGroup(
95 [
'use_osd' => $notification],
96 $this->
lng->txt(
'buddy_enable'),
97 $this->
lng->txt(
'buddy_enable_info')
101 'use_osd' => isset($cfg[
'buddysystem_request']) &&
102 in_array(
'osd', $cfg[
'buddysystem_request'],
true)
108 $checkbox = $checkbox->withValue(
null);
111 return $this->ui_factory->input()->container()->form()->standard(
112 $this->
ctrl->getFormAction($this,
'saveConfigurationForm'),
114 'enable' => $checkbox,
123 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
124 $this->error->raiseError($this->
lng->txt(
'no_permission'), $this->error->WARNING);
131 $this->tpl->setContent($this->ui_renderer->render($form));
139 $form = $form->withRequest($this->request);
140 if ($form->getError()) {
146 $data = $form->getData();
150 (
string) (isset(
$data[
'enable']) &&
$data[
'enable'] ? 1 : 0)
153 $cfg = ilNotificationDatabaseHandler::loadUserConfig(-1);
156 foreach ($cfg as
$type => $channels) {
157 $new_cfg[
$type] = [];
158 foreach ($channels as $channel) {
159 $new_cfg[
$type][$channel] =
true;
163 if (!isset($new_cfg[
'buddysystem_request']) || !is_array($new_cfg[
'buddysystem_request'])) {
164 $new_cfg[
'buddysystem_request'] = [];
167 if (!array_key_exists(
'osd', $new_cfg[
'buddysystem_request']) &&
168 isset(
$data[
'enable'][
'use_osd']) &&
$data[
'enable'][
'use_osd'] ===
true) {
169 $new_cfg[
'buddysystem_request'][
'osd'] =
true;
171 array_key_exists(
'osd', $new_cfg[
'buddysystem_request']) &&
172 isset(
$data[
'enable']) &&
173 (!isset(
$data[
'enable'][
'use_osd']) ||
$data[
'enable'][
'use_osd'] ===
false)
175 $new_cfg[
'buddysystem_request'][
'osd'] =
false;
178 ilNotificationDatabaseHandler::setUserConfig(-1, $new_cfg);
180 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
181 $this->
ctrl->redirect($this);
New implementation of ilObjectGUI.
prepareOutput(bool $show_sub_objects=true)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
__construct(Container $dic, ilPlugin $plugin)