ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjContentPageAdministrationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 
33 {
34  private const CMD_VIEW = 'view';
35  private const CMD_EDIT = 'edit';
36  private const CMD_SAVE = 'save';
37  private const F_READING_TIME = 'reading_time';
38 
39  private readonly GlobalHttpState $http;
40  private readonly Storage $settings_storage;
41 
42  public function __construct($a_data, int $a_id, bool $a_call_by_reference = true, bool $a_prepare_output = true)
43  {
44  global $DIC;
45 
46  $this->type = 'cpad';
47  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
48  $this->lng->loadLanguageModule($this->type);
49 
50  $this->http = $DIC->http();
51  $this->settings_storage = new StorageImpl($DIC->settings());
52  }
53 
54  public function getAdminTabs(): void
55  {
56  if ($this->rbac_system->checkAccess('visible,read', $this->object->getRefId())) {
57  $this->tabs_gui->addTarget('settings', $this->ctrl->getLinkTargetByClass(self::class, self::CMD_EDIT));
58  }
59 
60  if ($this->rbac_system->checkAccess('edit_permission', $this->object->getRefId())) {
61  $this->tabs_gui->addTarget(
62  'perm_settings',
63  $this->ctrl->getLinkTargetByClass(ilPermissionGUI::class, 'perm'),
64  [],
65  ilPermissionGUI::class
66  );
67  }
68  }
69 
70  public function executeCommand(): void
71  {
72  if (!$this->rbac_system->checkAccess('visible,read', $this->object->getRefId())) {
73  $this->error->raiseError($this->lng->txt('no_permission'), $this->error->WARNING);
74  }
75 
76  $nextClass = $this->ctrl->getNextClass($this) ?? '';
77  $cmd = $this->ctrl->getCmd() ?? '';
78  $this->prepareOutput();
79 
80  switch (strtolower($nextClass)) {
81  case strtolower(ilPermissionGUI::class):
82  $this->tabs_gui->setTabActive('perm_settings');
83  $perm_gui = new ilPermissionGUI($this);
84  $this->ctrl->forwardCommand($perm_gui);
85  break;
86 
87  default:
88  match ($cmd) {
89  self::CMD_VIEW, self::CMD_EDIT => $this->edit(),
90  self::CMD_SAVE => $this->save(),
91  default => throw new RuntimeException(__METHOD__ . ' :: Unknown command ' . $cmd),
92  };
93  }
94  }
95 
96  private function getForm(array $values = []): Form
97  {
98  $may_write = $this->rbac_system->checkAccess('write', $this->object->getRefId());
99 
100  $action = $this->ctrl->getLinkTargetByClass(self::class, self::CMD_SAVE);
101  if (!$may_write) {
102  $action = $this->ctrl->getLinkTargetByClass(self::class, self::CMD_VIEW);
103  }
104 
105  $readingTimeStatus = $this->ui_factory
106  ->input()
107  ->field()
108  ->checkbox(
109  $this->lng->txt('cpad_reading_time_status'),
110  $this->lng->txt('cpad_reading_time_status_desc')
111  )
112  ->withDisabled(!$may_write);
113 
114  if (isset($values[self::F_READING_TIME])) {
115  $readingTimeStatus = $readingTimeStatus->withValue($values[self::F_READING_TIME]);
116  }
117 
118  $section = $this->ui_factory->input()->field()->section(
119  [self::F_READING_TIME => $readingTimeStatus],
120  $this->lng->txt('settings')
121  )->withDisabled(!$may_write);
122 
123  $form = $this->ui_factory
124  ->input()
125  ->container()
126  ->form()
127  ->standard($action, [$section])
128  ->withAdditionalTransformation($this->refinery->custom()->transformation(static function ($values): array {
129  return array_merge(...$values);
130  }));
131 
132  if (!$may_write) {
133  $form = $form->withSubmitLabel($this->lng->txt('refresh'));
134  }
135 
136  return $form;
137  }
138 
142  private function show(array $components): void
143  {
144  $this->tpl->setContent(
145  $this->ui_renderer->render($components)
146  );
147  }
148 
149  private function edit(): void
150  {
151  $values = [
152  self::F_READING_TIME => $this->settings_storage->getSettings()->isReadingTimeEnabled(),
153  ];
154 
155  $form = $this->getForm($values);
156 
157  $this->show([$form]);
158  }
159 
160  private function save(): void
161  {
162  if (!$this->rbac_system->checkAccess('write', $this->object->getRefId())) {
163  $this->error->raiseError($this->lng->txt('no_permission'), $this->error->WARNING);
164  }
165 
166  $form = $this->getForm()->withRequest($this->http->request());
167  $data = $form->getData();
168 
169  if ($data === null || $this->request->getMethod() !== 'POST') {
170  $this->show([$form]);
171  return;
172  }
173 
174  $readingTime = $data[self::F_READING_TIME];
175  $settings = $this->settings_storage
176  ->getSettings()
177  ->withDisabledReadingTime();
178  if ($readingTime) {
179  $settings = $settings->withEnabledReadingTime();
180  }
181  $this->settings_storage->store($settings);
182 
183  $this->tpl->setOnScreenMessage('success', $this->lng->txt('settings_saved'), true);
184  $this->ctrl->redirect($this, self::CMD_EDIT);
185  }
186 }
__construct($a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
prepareOutput(bool $show_sub_objects=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$components
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
Class ilObjectGUI Basic methods of all Output classes.
global $DIC
Definition: shib_login.php:22
ilObjContentPageAdministrationGUI: ilPermissionGUI
__construct(Container $dic, ilPlugin $plugin)
ilSetting $settings