19 declare(strict_types=1);
86 $this->
help = $DIC[
"ilHelp"];
87 $this->db = $DIC->database();
88 $lng = $DIC->language();
89 $tpl = $DIC->ui()->mainTemplate();
90 $tree = $DIC->repositoryTree();
91 $rbacsystem = $DIC->rbac()->system();
92 $objDefinition = $DIC[
"objDefinition"];
93 $ilCtrl = $DIC->ctrl();
94 $this->error = $DIC[
'ilErr'];
97 $this->
lng->loadLanguageModule(
'administration');
102 $this->
ctrl = $ilCtrl;
104 $context = $DIC->globalScreen()->tool()->context();
105 $context->claim()->administration();
112 $this->
ctrl->saveParameter($this, array(
"ref_id",
"admin_mode"));
114 $this->admin_mode = $this->request->getAdminMode();
119 $this->
ctrl->setReturn($this,
"");
122 $ref_id = $this->request->getRefId();
129 $this->requested_obj_id = $this->request->getObjId();
147 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
153 $new_type = $this->request->getNewType();
155 $this->creation_mode =
true;
158 if ($this->creation_mode) {
159 $obj_type = $new_type;
160 $class_name = $this->objDefinition->getClassName($obj_type);
161 $next_class = strtolower(
"ilObj" . $class_name .
"GUI");
166 if ($this->
ctrl->getCmdClass() ===
"ilobjlanguageextgui") {
167 $next_class =
"ilobjlanguageextgui";
169 $next_class = $this->
ctrl->getNextClass($this);
173 $next_class ===
"iladministrationgui" || $next_class ==
"" 174 ) && ($this->
ctrl->getCmd() ===
"return")) {
177 $class_name = $this->objDefinition->getClassName($obj_type);
178 $next_class = strtolower(
"ilObj" . $class_name .
"GUI");
181 $cmd = $this->
ctrl->getCmd(
"forward");
184 switch ($next_class) {
188 if ($next_class !=
"" && $next_class !==
"iladministrationgui") {
189 $class_path = $this->
ctrl->lookupClassPath($next_class);
190 if (is_file($class_path)) {
191 require_once $class_path;
194 $class_name = $this->
ctrl->getClassForClasspath($class_path);
195 if (($next_class ===
"ilobjrolegui" || $next_class ===
"ilobjusergui" 196 || $next_class ===
"ilobjroletemplategui")) {
197 if ($this->requested_obj_id > 0) {
198 $this->gui_obj =
new $class_name(
null, $this->requested_obj_id,
false,
false);
199 $this->gui_obj->setCreationMode(
false);
201 $this->gui_obj =
new $class_name(
null, $this->cur_ref_id,
true,
false);
202 $this->gui_obj->setCreationMode(
true);
206 $this->gui_obj =
new $class_name($this->cur_ref_id);
208 if (!$this->creation_mode) {
209 if (is_subclass_of($class_name,
"ilObject2GUI")) {
212 $this->gui_obj =
new $class_name(
null, $this->cur_ref_id,
true,
false);
215 if (is_subclass_of($class_name,
"ilObject2GUI")) {
218 $this->gui_obj =
new $class_name(
"", 0,
true,
false);
222 $this->gui_obj->setCreationMode($this->creation_mode);
224 $this->gui_obj->setAdminMode($this->admin_mode);
229 $this->
ctrl->setReturn($this,
"return");
230 $ret = $this->
ctrl->forwardCommand($this->gui_obj);
231 $html = $this->gui_obj->getHTML();
234 $this->tpl->setVariable(
"OBJECTS", $html);
236 $this->tpl->printToStdout();
238 $cmd = $this->
ctrl->getCmd(
"forward");
252 if ($this->admin_mode !==
"repository") {
255 $this->
ctrl->setParameterByClass(
"iladministrationgui",
"admin_mode",
"settings");
257 $this->
ctrl->setParameterByClass(
258 "ilobjuserfoldergui",
260 $this->request->getJumpToUserId()
262 $this->
ctrl->redirectByClass(
"ilobjuserfoldergui",
"jumpToUser");
264 $this->
ctrl->redirectByClass(
"ilobjuserfoldergui",
"view");
295 $this->
ctrl->setParameterByClass(
"iladministrationgui",
"admin_mode",
"repository");
296 $this->
ctrl->redirectByClass(
"ilobjrootfoldergui",
"view");
304 if ($this->admin_mode !==
"repository") {
311 $exp->handleCommand();
327 $ref_id = $this->request->getRefId();
331 $class = strtolower(
"ilObj" . $class_name .
"GUI");
332 $ilCtrl->setParameterByClass($class,
"ref_id",
$ref_id);
333 $ilCtrl->redirectByClass($class,
"view");
Class ilAdministratioGUI.
readonly ilErrorHandling $error
const ADMIN_MODE_REPOSITORY
isInTree(?int $a_node_id)
get all information of a node.
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
forward()
Forward to class/command.
const ADMIN_MODE_SETTINGS
Class ilObjectGUI Basic methods of all Output classes.
getClassName(string $obj_name)
Administration explorer GUI class.
ilObjectDefinition $objDefinition
ilGlobalTemplateInterface $tpl
__construct(Container $dic, ilPlugin $plugin)
isPlugin(string $obj_name)
get RBAC status by type returns true if object type is an (activated) plugin type ...
static _lookupType(int $id, bool $reference=false)