19 declare(strict_types=1);
50 $this->
ctrl = $DIC[
'ilCtrl'];
51 $this->
lng = $DIC[
'lng'];
52 $this->tpl = $DIC[
'tpl'];
53 $this->rbabsystem = $DIC[
'rbacsystem'];
54 $this->ui_factory = $DIC[
'ui.factory'];
55 $this->ui_renderer = $DIC[
'ui.renderer'];
56 $this->request = $DIC[
'http']->request();
62 $this->
lng->loadLanguageModule(
'usr');
67 $this->action_context = $a_val;
77 $next_class = $this->
ctrl->getNextClass($this);
78 $cmd = $this->
ctrl->getCmd(
'show');
80 switch ($next_class) {
82 if (in_array($cmd, [
'show',
'save'])) {
88 public function show(): void
90 if (!$this->rbabsystem->checkAccess(
'write', $this->ref_id)) {
91 $this->
ctrl->redirect($this,
'show');
94 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'user_actions_activation_info'));
99 $inputs[
"{$action['action_comp_id']}:{$action['action_type_id']}"] =
100 $this->ui_factory->input()->field()->checkbox($action[
"action_type_name"])
101 ->withValue($action[
'active']);
104 $this->tpl->setContent(
105 $this->ui_renderer->render(
116 $inputs[
"{$action['action_comp_id']}:{$action['action_type_id']}"] =
117 $this->ui_factory->input()->field()->checkbox($action[
"action_type_name"])
118 ->withValue($action[
'active']);
121 return $this->ui_factory->input()->container()->form()->standard(
122 $this->
ctrl->getFormActionByClass(self::class,
'save'),
129 if (!$this->rbabsystem->checkAccess(
'write', $this->ref_id)) {
130 $this->
ctrl->redirect($this,
'show');
133 $form = $this->
buildForm()->withRequest($this->request);
134 $data = $form->getData();
136 $this->tpl->setContent($this->ui_renderer->render($form));
141 $this->user_action_admin->activateAction(
142 $this->action_context->getComponentId(),
143 $this->action_context->getContextId(),
144 $action[
'action_comp_id'],
145 $action[
'action_type_id'],
146 $data[
"{$action['action_comp_id']}:{$action['action_type_id']}"] ?? false
149 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
156 foreach ($p->getActionTypes() as
$id => $name) {
158 'action_comp_id' => $p->getComponentId(),
159 'action_type_id' =>
$id,
160 'action_type_name' => $name,
161 'active' => $this->user_action_admin->isActionActive(
162 $this->action_context->getComponentId(),
163 $this->action_context->getContextId(),
164 $p->getComponentId(),
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
User action administration GUI class.
ilUserActionAdmin $user_action_admin
setActionContext(?ilUserActionContext $a_val=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
User action administration.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ServerRequestInterface $request
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
ilGlobalTemplateInterface $tpl
ilUserActionContext $action_context