19 declare(strict_types=1);
42 public function __construct($a_data,
int $a_id,
bool $a_call_by_reference =
true,
bool $a_prepare_output =
true)
48 $this->
lng->loadLanguageModule($this->type);
50 $this->
http = $DIC->http();
51 $this->settings_storage =
new StorageImpl($DIC->settings());
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));
60 if ($this->rbac_system->checkAccess(
'edit_permission', $this->object->getRefId())) {
61 $this->tabs_gui->addTarget(
63 $this->
ctrl->getLinkTargetByClass(ilPermissionGUI::class,
'perm'),
65 ilPermissionGUI::class
72 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
73 $this->error->raiseError($this->
lng->txt(
'no_permission'), $this->error->WARNING);
76 $nextClass = $this->
ctrl->getNextClass($this) ??
'';
77 $cmd = $this->
ctrl->getCmd() ??
'';
80 switch (strtolower($nextClass)) {
81 case strtolower(ilPermissionGUI::class):
82 $this->tabs_gui->setTabActive(
'perm_settings');
84 $this->
ctrl->forwardCommand($perm_gui);
89 self::CMD_VIEW, self::CMD_EDIT => $this->
edit(),
90 self::CMD_SAVE => $this->
save(),
91 default =>
throw new RuntimeException(__METHOD__ .
' :: Unknown command ' . $cmd),
96 private function getForm(array $values = []): Form
98 $may_write = $this->rbac_system->checkAccess(
'write', $this->
object->getRefId());
100 $action = $this->
ctrl->getLinkTargetByClass(self::class, self::CMD_SAVE);
102 $action = $this->
ctrl->getLinkTargetByClass(self::class, self::CMD_VIEW);
105 $readingTimeStatus = $this->ui_factory
109 $this->
lng->txt(
'cpad_reading_time_status'),
110 $this->
lng->txt(
'cpad_reading_time_status_desc')
112 ->withDisabled(!$may_write);
114 if (isset($values[self::F_READING_TIME])) {
115 $readingTimeStatus = $readingTimeStatus->withValue($values[self::F_READING_TIME]);
118 $section = $this->ui_factory->input()->field()->section(
119 [self::F_READING_TIME => $readingTimeStatus],
120 $this->
lng->txt(
'settings')
121 )->withDisabled(!$may_write);
123 $form = $this->ui_factory
127 ->standard($action, [$section])
128 ->withAdditionalTransformation($this->
refinery->custom()->transformation(
static function ($values): array {
129 return array_merge(...$values);
133 $form = $form->withSubmitLabel($this->
lng->txt(
'refresh'));
144 $this->tpl->setContent(
145 $this->ui_renderer->render($components)
152 self::F_READING_TIME => $this->settings_storage->getSettings()->isReadingTimeEnabled(),
155 $form = $this->
getForm($values);
157 $this->
show([$form]);
162 if (!$this->rbac_system->checkAccess(
'write', $this->object->getRefId())) {
163 $this->error->raiseError($this->
lng->txt(
'no_permission'), $this->error->WARNING);
166 $form = $this->
getForm()->withRequest($this->
http->request());
167 $data = $form->getData();
169 if (
$data ===
null || $this->request->getMethod() !==
'POST') {
170 $this->
show([$form]);
174 $readingTime =
$data[self::F_READING_TIME];
177 ->withDisabledReadingTime();
181 $this->settings_storage->store(
$settings);
183 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
184 $this->
ctrl->redirect($this, self::CMD_EDIT);
__construct($a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
getForm(array $values=[])
prepareOutput(bool $show_sub_objects=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
readonly GlobalHttpState $http
static http()
Fetches the global http state from ILIAS.
readonly Storage $settings_storage
Class ilObjectGUI Basic methods of all Output classes.
ilObjContentPageAdministrationGUI: ilPermissionGUI
__construct(Container $dic, ilPlugin $plugin)