27 protected \ILIAS\User\StandardGUIRequest
$request;
37 $this->
ctrl = $DIC->ctrl();
38 $this->
lng = $DIC->language();
39 $this->tpl = $DIC[
"tpl"];
41 $this->rbabsystem = $DIC->rbac()->system();
43 $this->
lng->loadLanguageModule(
"usr");
44 $this->request = new \ILIAS\User\StandardGUIRequest(
52 $this->action_context = $a_val;
62 $next_class = $this->
ctrl->getNextClass($this);
63 $cmd = $this->
ctrl->getCmd(
"show");
65 switch ($next_class) {
67 if (in_array($cmd, array(
"show",
"save"))) {
73 public function show(): void
75 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"user_actions_activation_info"));
81 $this->rbabsystem->checkAccess(
"write", $this->ref_id)
83 $this->tpl->setContent($tab->getHTML());
89 public function save(): void
91 if (!$this->rbabsystem->checkAccess(
"write", $this->ref_id)) {
92 $this->
ctrl->redirect($this,
"show");
95 $active = $this->request->getActionActive();
98 $this->action_context->getComponentId(),
99 $this->action_context->getContextId(),
100 $a[
"action_comp_id"],
101 $a[
"action_type_id"],
102 (bool) ($active[$a[
"action_comp_id"] .
":" . $a[
"action_type_id"]] ??
false)
105 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
106 $this->
ctrl->redirect($this,
"show");
117 foreach ($p->getActionTypes() as
$id =>
$name) {
119 "action_comp_id" => $p->getComponentId(),
120 "action_type_id" =>
$id,
121 "action_type_name" =>
$name,
123 $this->action_context->getComponentId(),
124 $this->action_context->getContextId(),
125 $p->getComponentId(),
setActionContext(ilUserActionContext $a_val=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getAllProviders()
Get all action providers.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
save()
Save !!!! note in the future this must depend on the context, currently we only have one...
static activateAction(string $a_context_comp, string $a_context_id, string $a_action_comp, string $a_action_type, bool $a_active)
ILIAS User StandardGUIRequest $request
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static lookupActive(string $a_context_comp, string $a_context_id, string $a_action_comp, string $a_action_type)
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getActions()
Get actions, !!!! note in the future this must depend on the context, currently we only have one...
ilUserActionContext $action_context