ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjContactAdministrationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
31 {
32  public function __construct(int $a_id = 0, int $a_id_type = self::REPOSITORY_NODE_ID, int $a_parent_node_id = 0)
33  {
34  parent::__construct($a_id, $a_id_type, $a_parent_node_id);
35  $this->lng->loadLanguageModule('buddysystem');
36  }
37 
38  public function getType(): string
39  {
40  return 'cadm';
41  }
42 
43  public function getAdminTabs(): void
44  {
45  if ($this->checkPermissionBool('read')) {
46  $this->tabs_gui->addTarget(
47  'settings',
48  $this->ctrl->getLinkTarget($this, 'showConfigurationForm'),
49  ['', 'view', 'showConfigurationForm', 'saveConfigurationForm'],
50  self::class
51  );
52  }
53 
54  if ($this->checkPermissionBool('edit_permission')) {
55  $this->tabs_gui->addTarget(
56  'perm_settings',
57  $this->ctrl->getLinkTargetByClass([self::class, ilPermissionGUI::class], 'perm'),
58  ['perm', 'info', 'owner'],
59  ilPermissionGUI::class
60  );
61  }
62  }
63 
64  public function executeCommand(): void
65  {
66  $next_class = $this->ctrl->getNextClass($this) ?? '';
67  $cmd = $this->ctrl->getCmd() ?? '';
68  $this->prepareOutput();
69 
70  switch (strtolower($next_class)) {
71  case strtolower(ilPermissionGUI::class):
72  $perm_gui = new ilPermissionGUI($this);
73  $this->ctrl->forwardCommand($perm_gui);
74  break;
75 
76  default:
77  if ($cmd === '' || $cmd === 'view') {
78  $cmd = 'showConfigurationForm';
79  }
80  $this->$cmd();
81  break;
82  }
83  }
84 
85  protected function getConfigurationForm(): StandardForm
86  {
87  $notification = $this->ui_factory->input()->field()->checkbox(
88  $this->lng->txt('buddy_use_osd'),
89  $this->lng->txt('buddy_use_osd_info')
90  )
91  ->withDisabled(!$this->checkPermissionBool('write'));
92 
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')
98  )
99  ->withValue(
100  [
101  'use_osd' => isset($cfg['buddysystem_request']) &&
102  in_array('osd', $cfg['buddysystem_request'], true)
103  ]
104  )
105  ->withDisabled(!$this->checkPermissionBool('write'));
106 
107  if (ilBuddySystem::getInstance()->getSetting('enabled', '0') === '0') {
108  $checkbox = $checkbox->withValue(null);
109  }
110 
111  return $this->ui_factory->input()->container()->form()->standard(
112  $this->ctrl->getFormAction($this, 'saveConfigurationForm'),
113  [
114  'enable' => $checkbox,
115  ]
116  )->withSubmitLabel(
117  $this->checkPermissionBool('write') ? $this->lng->txt('save') : $this->lng->txt('refresh')
118  );
119  }
120 
121  protected function showConfigurationForm(?StandardForm $form = null): void
122  {
123  if (!$this->rbac_system->checkAccess('visible,read', $this->object->getRefId())) {
124  $this->error->raiseError($this->lng->txt('no_permission'), $this->error->WARNING);
125  }
126 
127  if (!$form instanceof StandardForm) {
128  $form = $this->getConfigurationForm();
129  }
130 
131  $this->tpl->setContent($this->ui_renderer->render($form));
132  }
133 
134  protected function saveConfigurationForm(): void
135  {
136  $this->checkPermission('write');
137 
138  $form = $this->getConfigurationForm();
139  $form = $form->withRequest($this->request);
140  if ($form->getError()) {
141  $this->showConfigurationForm($form);
142 
143  return;
144  }
145 
146  $data = $form->getData();
147 
148  ilBuddySystem::getInstance()->setSetting(
149  'enabled',
150  (string) (isset($data['enable']) && $data['enable'] ? 1 : 0)
151  );
152 
153  $cfg = ilNotificationDatabaseHandler::loadUserConfig(-1);
154 
155  $new_cfg = [];
156  foreach ($cfg as $type => $channels) {
157  $new_cfg[$type] = [];
158  foreach ($channels as $channel) {
159  $new_cfg[$type][$channel] = true;
160  }
161  }
162 
163  if (!isset($new_cfg['buddysystem_request']) || !is_array($new_cfg['buddysystem_request'])) {
164  $new_cfg['buddysystem_request'] = [];
165  }
166 
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;
170  } elseif (
171  array_key_exists('osd', $new_cfg['buddysystem_request']) &&
172  isset($data['enable']) &&
173  (!isset($data['enable']['use_osd']) || $data['enable']['use_osd'] === false)
174  ) {
175  $new_cfg['buddysystem_request']['osd'] = false;
176  }
177 
178  ilNotificationDatabaseHandler::setUserConfig(-1, $new_cfg);
179 
180  $this->tpl->setOnScreenMessage('success', $this->lng->txt('saved_successfully'), true);
181  $this->ctrl->redirect($this);
182  }
183 }
New implementation of ilObjectGUI.
Class ilObjContactAdministrationGUI.
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)
__construct(int $a_id=0, int $a_id_type=self::REPOSITORY_NODE_ID, int $a_parent_node_id=0)
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
__construct(Container $dic, ilPlugin $plugin)