ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilMMAbstractItemGUI.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\GlobalScreen\Scope\MainMenu\Collector\Renderer\Hasher
;
22
use
ILIAS\DI\UIServices
;
23
use
ILIAS\HTTP\Services
;
24
29
abstract
class
ilMMAbstractItemGUI
30
{
31
use
Hasher
;
32
public
const
IDENTIFIER
=
'identifier'
;
33
public
const
CMD_FLUSH
=
'flush'
;
34
35
protected
UIServices
$ui
;
36
37
protected
Services
$http
;
38
39
protected
ilMMItemRepository
$repository
;
40
41
protected
ilToolbarGUI
$toolbar
;
42
43
protected
ilTabsGUI
$tabs
;
44
45
public
ilLanguage
$lng
;
46
47
protected
ilCtrl
$ctrl
;
48
49
public
ilGlobalTemplateInterface
$tpl
;
50
51
public
ilTree
$tree
;
52
53
protected
ilObjMainMenuAccess
$access
;
54
60
public
function
__construct
(
protected
ilMMTabHandling
$tab_handling)
61
{
62
global
$DIC
;
63
64
$this->
repository
=
new
ilMMItemRepository
();
65
$this->
tabs
= $DIC[
'ilTabs'
];
66
$this->
lng
= $DIC->language();
67
$this->
ctrl
= $DIC[
'ilCtrl'
];
68
$this->tpl = $DIC[
'tpl'
];
69
$this->tree = $DIC[
'tree'
];
70
$this->
toolbar
= $DIC[
'ilToolbar'
];
71
$this->
http
= $DIC->http();
72
$this->
ui
= $DIC->ui();
73
$this->
access
=
new
ilObjMainMenuAccess
();
74
75
$this->
lng
->loadLanguageModule(
'form'
);
76
}
77
84
protected
function
determineCommand
(
string
$standard,
string
$delete): string
85
{
86
$this->
access
->checkAccessAndThrowException(
'visible,read'
);
87
$cmd = $this->
ctrl
->getCmd();
88
if
($cmd !==
''
) {
89
return
$cmd;
90
}
91
92
$r
= $this->
http
->request();
93
$post
=
$r
->getParsedBody();
94
95
if
($cmd ===
""
&& isset(
$post
[
'interruptive_items'
])) {
96
return
$delete;
97
}
98
99
return
$standard;
100
}
101
106
protected
function
getMMItemFromRequest
():
ilMMItemFacadeInterface
107
{
108
$r
= $this->
http
->request();
109
$get =
$r
->getQueryParams();
110
$post
=
$r
->getParsedBody();
111
112
if
(isset(
$post
[
'interruptive_items'
])) {
113
$string =
$post
[
'interruptive_items'
][0];
114
$identification = $this->unhash($string);
115
}
else
{
116
$identification = $this->unhash($get[self::IDENTIFIER]);
117
}
118
119
return
$this->
repository
->getItemFacadeForIdentificationString($identification);
120
}
121
122
protected
function
flush
(): void
123
{
124
$this->
repository
->flushLostItems();
125
$this->tpl->setOnScreenMessage(
'success'
, $this->
lng
->txt(
"msg_subitem_flushed"
),
true
);
126
$this->
cancel
();
127
}
128
129
abstract
protected
function
cancel
(): void;
130
}
ILIAS\Repository\access
access()
Definition:
trait.GlobalDICDomainServices.php:51
ilMMAbstractItemGUI
Class ilMMAbstractItemGUI.
Definition:
class.ilMMAbstractItemGUI.php:29
ilMMAbstractItemGUI\CMD_FLUSH
const CMD_FLUSH
Definition:
class.ilMMAbstractItemGUI.php:33
ilTree
ilLanguage
ilMMAbstractItemGUI\flush
flush()
Definition:
class.ilMMAbstractItemGUI.php:122
ilTabsGUI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilTabsGUI.php:25
ilObjMainMenuAccess
ILIAS\Repository\toolbar
toolbar()
Definition:
trait.GlobalDICGUIServices.php:99
ilGlobalTemplateInterface
ILIAS\UI\examples\Deck\repository
repository()
description: > Example for rendering a repository card
Definition:
repository.php:33
UIServices
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilMMAbstractItemGUI\$ctrl
ilCtrl $ctrl
Definition:
class.ilMMAbstractItemGUI.php:47
ilMMItemRepository
Class ilMMItemRepository.
Definition:
class.ilMMItemRepository.php:40
Hasher
ilToolbarGUI
Services
ilMMAbstractItemGUI\$tree
ilTree $tree
Definition:
class.ilMMAbstractItemGUI.php:51
ILIAS\Repository\ctrl
ctrl()
Definition:
trait.GlobalDICGUIServices.php:63
ILIAS\DI\UIServices
Provides fluid interface to RBAC services.
Definition:
UIServices.php:24
ilMMAbstractItemGUI\$http
Services $http
Definition:
class.ilMMAbstractItemGUI.php:37
ilMMTabHandling
Class ilMMTabHandling.
Definition:
class.ilMMTabHandling.php:25
ILIAS\FileDelivery\http
static http()
Fetches the global http state from ILIAS.
Definition:
HttpServiceAware.php:55
ilMMAbstractItemGUI\$access
ilObjMainMenuAccess $access
Definition:
class.ilMMAbstractItemGUI.php:53
ilMMAbstractItemGUI\$lng
ilLanguage $lng
Definition:
class.ilMMAbstractItemGUI.php:45
ilMMAbstractItemGUI\$tpl
ilGlobalTemplateInterface $tpl
Definition:
class.ilMMAbstractItemGUI.php:49
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:61
ILIAS\Repository\ui
ui()
Definition:
trait.GlobalDICGUIServices.php:53
ILIAS\Repository\tabs
tabs()
Definition:
trait.GlobalDICGUIServices.php:114
$DIC
global $DIC
Definition:
shib_login.php:22
ilMMAbstractItemGUI\$repository
ilMMItemRepository $repository
Definition:
class.ilMMAbstractItemGUI.php:39
ilMMAbstractItemGUI\$toolbar
ilToolbarGUI $toolbar
Definition:
class.ilMMAbstractItemGUI.php:41
Hasher
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilMMAbstractItemGUI\cancel
cancel()
ilMMAbstractItemGUI\IDENTIFIER
const IDENTIFIER
Definition:
class.ilMMAbstractItemGUI.php:32
ilMMAbstractItemGUI\getMMItemFromRequest
getMMItemFromRequest()
Definition:
class.ilMMAbstractItemGUI.php:106
ilMMAbstractItemGUI\$ui
UIServices $ui
Definition:
class.ilMMAbstractItemGUI.php:35
$post
$post
Definition:
ltitoken.php:46
ilMMAbstractItemGUI\$tabs
ilTabsGUI $tabs
Definition:
class.ilMMAbstractItemGUI.php:43
ilMMItemFacadeInterface
Interface ilMMItemFacadeInterface.
Definition:
interface.ilMMItemFacadeInterface.php:28
ilMMAbstractItemGUI\__construct
__construct(protected ilMMTabHandling $tab_handling)
ilMMAbstractItemGUI constructor.
Definition:
class.ilMMAbstractItemGUI.php:60
ilCtrl
$r
$r
Definition:
shib_logout.php:140
ilMMAbstractItemGUI\determineCommand
determineCommand(string $standard, string $delete)
Definition:
class.ilMMAbstractItemGUI.php:84
components
ILIAS
MainMenu
classes
Administration
class.ilMMAbstractItemGUI.php
Generated on Thu Apr 3 2025 23:03:16 for ILIAS by
1.8.13 (using
Doxyfile
)