3 declare(strict_types=1);
46 if (!$access_helper->isUserLoggedIn()() || !$access_helper->hasAdministrationAccess()()) {
51 $this->dic->language()->loadLanguageModule(
'administration');
55 $this->dic->refinery()
60 foreach ($groups as $group => $group_items) {
62 if (is_array($group_items) && count($group_items) > 0) {
65 foreach ($group_items as $group_item) {
66 if ($group_item ===
"---") {
70 $icon = $this->dic->ui()->factory()->symbol()->icon()->standard($titems[$group_item][
"type"], $titems[$group_item][
"title"]);
72 $ref_id = $titems[$group_item][
"ref_id"];
74 $identification = $this->
if->identifier(
'mm_adm_rep');
75 $action =
"ilias.php?baseClass=ilAdministrationGUI&ref_id=" .
$ref_id .
"&admin_mode=repository";
77 $identification = $this->
if->identifier(
"mm_adm_" . $titems[$group_item][
"type"]);
78 $action =
"ilias.php?baseClass=ilAdministrationGUI&ref_id=" .
$ref_id .
"&cmd=jump";
83 ->link($identification)
84 ->withTitle($titems[$group_item][
"title"])
87 ->withVisibilityCallable(
function () use (
$ref_id) {
88 return $this->dic->rbac()->system()->checkAccess(
'visible,read', (
int)
$ref_id);
93 $title = $this->dic->language()->txt(
"adm_" . $group);
96 ->linkList($this->
if->identifier(
'adm_content_' . $group))
97 ->withSupportsAsynchronousLoading(
true)
102 ->withPosition($position * 10)
103 ->withAlwaysAvailable(
true)
104 ->withNonAvailableReason($this->dic->ui()->factory()->legacy(
"{$this->dic->language()->txt('item_must_be_always_active')}"))
105 ->withVisibilityCallable(
106 $access_helper->hasAdministrationAccess()
107 )->withAvailableCallable(
108 $access_helper->isUserLoggedIn()
120 "maintenance" =>
"icon_sysa",
121 "layout_and_navigation" =>
"icon_laya",
122 "repository_and_objects" =>
"icon_repa",
123 "personal_workspace" =>
"icon_pwsa",
124 "achievements" =>
"icon_achva",
125 "communication" =>
"icon_coma",
126 "user_administration" =>
"icon_usra",
127 "search_and_find" =>
"icon_safa",
128 "extending_ilias" =>
"icon_exta" 131 return $this->dic->ui()->factory()->symbol()->icon()->custom($icon_path, $title);
136 if (!$this->dic->offsetExists(
'tree')) {
139 $tree = $this->dic->repositoryTree();
140 $lng = $this->dic->language();
144 $this->dic->refinery()
150 foreach ($objects as $object) {
151 $new_objects[$object[
"title"] .
":" . $object[
"child"]]
154 if ($object[
"type"] ===
"orgu") {
155 $new_objects[$object[
"title"] .
":" . $object[
"child"]][
"title"] =
$lng->txt(
"objs_orgu");
168 "title" =>
$lng->txt(
"repository_admin"),
169 "description" =>
$lng->txt(
"repository_admin_desc"),
170 "desc" =>
$lng->txt(
"repository_admin_desc"),
180 "title" =>
$lng->txt(
"general_settings"),
186 foreach ($new_objects as
$c) {
188 if ($c[
"type"] !==
"adm" && $tree->getParentId((
int) $c[
"ref_id"]) ===
ROOT_FOLDER_ID 189 && $admin_request->getAdminMode() !==
"repository" 195 if ($c[
"type"] ==
"" || $c[
"type"] ===
"objf" 196 || $c[
"type"] ===
"xxx" 204 foreach ($items as
$i) {
205 $titems[$i[
"type"]] =
$i;
211 array(
"adm",
"lngf",
"hlps",
"wfe",
"pdfg",
'fils',
'logs',
'sysc',
"recf",
"root"),
212 "layout_and_navigation" =>
213 array(
"mme",
"dshs",
"stys",
"adve",
"accs"),
214 "repository_and_objects" =>
215 array(
"reps",
"crss",
"grps",
"prgs",
"bibs",
"blga",
"cpad",
"chta",
"facs",
"frma",
"lrss",
216 "mcts",
"mobs",
"svyf",
"assf",
"wbrs",
'lsos'),
217 "personal_workspace" =>
218 array(
"tags",
"cals",
"prfa",
"prss",
"nots"),
220 array(
"lhts",
"skmg",
"trac",
"bdga",
"cert"),
222 array(
"mail",
"cadm",
"nwss",
"coms",
"adn",
"awra",
"nota"),
223 "user_administration" =>
224 array(
"usrf",
'tos',
"rolf",
"otpl",
"auth",
"ps"),
226 array(
"seas",
"mds",
"taxs"),
228 array(
'ecss',
"ltis",
"wbdv",
"cmis",
"cmps",
"extt")
232 foreach ($layout as $group => $entries) {
233 $groups[$group] = array();
234 $entries_since_last_sep =
false;
235 foreach ($entries as
$e) {
236 if ($e ===
"---" || (isset($titems[$e][
"type"]) && $titems[$e][
"type"] !=
"")) {
237 if ($e ===
"---" && $entries_since_last_sep) {
238 $groups[$group][] =
$e;
239 $entries_since_last_sep =
false;
242 $groups[$group][] =
$e;
243 $entries_since_last_sep =
true;
250 return [$groups, $titems];
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This describes how an icon could be modified during construction of UI.
getIconForGroup(string $group, string $title)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
Interface StaticMainMenuProvider.
if(!file_exists(getcwd() . '/ilias.ini.php'))
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class AdministrationMainBarProvider.