19 declare(strict_types=1);
31 public function __construct(
int $a_id = 0,
int $a_id_type = self::REPOSITORY_NODE_ID,
int $a_parent_node_id = 0)
34 $this->
lng->loadLanguageModule(
'buddysystem');
45 $this->tabs_gui->addTarget(
47 $this->
ctrl->getLinkTarget($this,
'showConfigurationForm'),
48 [
'',
'view',
'showConfigurationForm',
'saveConfigurationForm'],
54 $this->tabs_gui->addTarget(
56 $this->
ctrl->getLinkTargetByClass([self::class, ilPermissionGUI::class],
'perm'),
57 [
'perm',
'info',
'owner'],
58 ilPermissionGUI::class
65 $next_class = $this->
ctrl->getNextClass($this);
66 $cmd = $this->
ctrl->getCmd();
69 switch (strtolower($next_class)) {
70 case strtolower(ilPermissionGUI::class):
72 $this->
ctrl->forwardCommand($perm_gui);
76 if ($cmd ===
'' || $cmd ===
'view') {
77 $cmd =
'showConfigurationForm';
88 $form->setTitle($this->
lng->txt(
'settings'));
89 $form->setFormAction($this->
ctrl->getFormAction($this,
'saveConfigurationForm'));
93 $enabled->setInfo($this->
lng->txt(
'buddy_enable_info'));
98 $notification->setInfo($this->
lng->txt(
'buddy_use_osd_info'));
100 $enabled->addSubItem($notification);
105 $form->addCommandButton(
'saveConfigurationForm', $this->
lng->txt(
'save'));
114 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
115 $this->error->raiseError($this->
lng->txt(
'no_permission'), $this->error->WARNING);
119 $cfg = ilNotificationDatabaseHandler::loadUserConfig(-1);
122 $form->setValuesByArray([
124 'use_osd' => isset($cfg[
'buddysystem_request']) && in_array(
'osd', $cfg[
'buddysystem_request'],
true)
128 $this->tpl->setContent($form->getHTML());
137 if (!$form->checkInput()) {
138 $form->setValuesByPost();
145 $cfg = ilNotificationDatabaseHandler::loadUserConfig(-1);
148 foreach ($cfg as
$type => $channels) {
149 $new_cfg[
$type] = [];
150 foreach ($channels as $channel) {
151 $new_cfg[
$type][$channel] =
true;
155 if (!isset($new_cfg[
'buddysystem_request']) || !is_array($new_cfg[
'buddysystem_request'])) {
156 $new_cfg[
'buddysystem_request'] = [];
159 if (!array_key_exists(
'osd', $new_cfg[
'buddysystem_request']) && $form->getInput(
'use_osd')) {
160 $new_cfg[
'buddysystem_request'][
'osd'] =
true;
161 } elseif (array_key_exists(
'osd', $new_cfg[
'buddysystem_request']) && !(
bool) $form->getInput(
'use_osd')) {
162 $new_cfg[
'buddysystem_request'][
'osd'] =
false;
165 ilNotificationDatabaseHandler::setUserConfig(-1, $new_cfg);
167 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
168 $this->
ctrl->redirect($this);
checkPermission(string $perm, string $cmd="", string $type="", int $ref_id=null)
New implementation of ilObjectGUI.
prepareOutput(bool $show_sub_objects=true)
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
__construct(Container $dic, ilPlugin $plugin)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.