3 declare(strict_types=1);
55 $this->objDefinition = $DIC[
'objDefinition'];
56 $this->objectDataCache = $DIC[
'ilObjDataCache'];
57 $this->tpl = $DIC->ui()->mainTemplate();
58 $this->
lng = $DIC->language();
59 $this->
lng->loadLanguageModule(
"rbac");
60 $this->
ctrl = $DIC->ctrl();
61 $this->rbacsystem = $DIC->rbac()->system();
62 $this->rbacreview = $DIC->rbac()->review();
63 $this->rbacadmin = $DIC->rbac()->admin();
64 $this->
tabs = $DIC->tabs();
65 $this->ilErr = $DIC[
'ilErr'];
66 $this->
http = $DIC->http();
69 $this->gui_obj = $a_gui_obj;
70 $this->
tabs->activateTab(
'perm_settings');
79 $form->setFormAction($this->
ctrl->getFormAction($this,
"owner"));
80 $form->setTitle($this->
lng->txt(
"info_owner_of_object"));
83 $login->setDataSource($this->
ctrl->getLinkTargetByClass(array(get_class($this),
84 'ilRepositorySearchGUI' 85 ),
'doUserAutoComplete',
'',
true));
86 $login->setRequired(
true);
88 $login->setInfo($this->
lng->txt(
"chown_warning"));
90 $form->addItem($login);
91 $form->addCommandButton(
"changeOwner", $this->
lng->txt(
"change_owner"));
92 $this->tpl->setContent($form->getHTML());
98 if ($this->
http->wrapper()->post()->has(
'owner')) {
99 $owner = $this->
http->wrapper()->post()->retrieve(
101 $this->
refinery->kindlyTo()->string()
105 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'user_not_known'));
111 if ($user_id != $this->gui_obj->getObject()->getOwner()) {
112 $this->gui_obj->getObject()->setOwner($user_id);
113 $this->gui_obj->getObject()->updateOwner();
114 $this->objectDataCache->deleteCachedEntry($this->gui_obj->getObject()->getId());
121 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'owner_updated'),
true);
123 if (!$this->rbacsystem->checkAccess(
"edit_permission", $this->gui_obj->getObject()->getRefId())) {
124 $this->
ctrl->redirect($this->gui_obj);
127 $this->
ctrl->redirect($this,
'owner');
133 $perm = $a_cmd ===
'perm';
135 $info = $a_cmd ===
'perminfo';
136 $owner = $a_cmd ===
'owner';
137 $log = $a_cmd ===
'log';
139 $this->
tabs->addSubTabTarget(
140 "permission_settings",
141 $this->
ctrl->getLinkTarget($this,
"perm"),
149 $this->
tabs->addSubTabTarget(
150 self::TAB_POSITION_PERMISSION_SETTINGS,
159 $this->
tabs->addSubTabTarget(
161 $this->
ctrl->getLinkTargetByClass(array(get_class($this),
"ilobjectpermissionstatusgui"),
"perminfo"),
167 $this->
tabs->addSubTabTarget(
169 $this->
ctrl->getLinkTarget($this,
"owner"),
177 $this->
tabs->addSubTabTarget(
179 $this->
ctrl->getLinkTarget($this,
"log"),
188 public function log(): void
191 $this->
ctrl->redirect($this,
"perm");
196 $table =
new ilRbacLogTableGUI($this,
"log", $this->gui_obj->getObject()->getRefId());
197 $this->tpl->setContent($table->getHTML());
202 $table =
new ilRbacLogTableGUI($this,
"log", $this->gui_obj->getObject()->getRefId());
204 $table->writeFilterToSession();
210 $table =
new ilRbacLogTableGUI($this,
"log", $this->gui_obj->getObject()->getRefId());
212 $table->resetFilter();
Interface GlobalHttpState.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupId($a_user_str)
__initSubTabs(string $a_cmd)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const TAB_POSITION_PERMISSION_SETTINGS
parses the objects.xml it handles the xml-description of all ilias objects
resetOffset(bool $a_in_determination=false)
static http()
Fetches the global http state from ILIAS.
static add(int $a_action, int $a_ref_id, array $a_diff, bool $a_source_ref_id=false)
ilObjectDataCache $objectDataCache
ilObjectDefinition $objDefinition
Error Handling & global info handling uses PEAR error class.
ilGlobalTemplateInterface $tpl
Class ilRbacAdmin Core functions for role based access control.
Class ilPermissionGUI RBAC related output.
__construct(object $a_gui_obj)
static _lookupLogin(int $a_user_id)