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
EntriesRepositoryDB.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\GlobalScreen\UI\Footer\Entries
;
20
21
use
ILIAS\GlobalScreen\Scope\Footer\Collector\FooterMainCollector
;
22
use
ILIAS\GlobalScreen\Scope\MainMenu\Collector\Renderer\Hasher
;
23
use
ILIAS\GlobalScreen\Scope\Footer\Factory\canHaveParent
;
24
use
ILIAS\GlobalScreen\Scope\Footer\Factory\Link
;
25
use
ILIAS\GlobalScreen\Scope\Footer\Factory\Modal
;
26
use
ILIAS\GlobalScreen\Scope\Footer\Factory\hasAction
;
27
28
class
EntriesRepositoryDB
implements
EntriesRepository
29
{
30
use
Hasher
;
31
32
public
const
TABLE_NAME
=
'gs_footer_items'
;
33
37
protected
array
$cache
= [];
38
39
public
function
__construct
(
40
private
\
ilDBInterface
$db
,
41
private
?\
ilFooterCustomGroupsProvider
$provider
=
null
42
) {
43
}
44
45
public
function
syncWithGlobalScreen
(
46
FooterMainCollector
$collector
47
):
void
{
48
$collector->
collectOnce
();
49
$this->
preload
();
50
51
foreach
($collector->
getRawUnfilteredItems
() as $item) {
52
if
(!$item instanceof
canHaveParent
) {
53
continue
;
54
}
55
if
($this->
has
($item->getProviderIdentification()->serialize())) {
56
continue
;
57
}
60
$new =
new
EntryDTO
(
61
$item->getProviderIdentification()->serialize(),
62
$item->getTitle(),
63
true
,
64
$item->getPosition(),
65
$item->getParentIdentification()->serialize(),
66
$item instanceof
hasAction
? (string) $item->
getAction
() :
''
,
67
$item instanceof
hasAction
? $item->
mustOpenInNewViewport
() :
false
,
68
true
69
);
70
$this->
store
($new);
71
}
72
}
73
74
public
function
preload
(): void
75
{
76
foreach
(
77
$this->db->fetchAll(
78
$this->db->query(
'SELECT * FROM '
. self::TABLE_NAME .
' WHERE type != 1 ORDER BY position ASC'
)
79
) as $row
80
) {
81
$entry = $this->
fromDB
($row);
82
$this->cache[$entry->getId()] = $entry;
83
}
84
}
85
86
private
function
fromDB
(array $row):
Entry
87
{
88
return
new
EntryDTO
(
89
$row[
'id'
],
90
$row[
'title'
],
91
$row[
'is_active'
] === 1,
92
(
int
) $row[
'position'
],
93
(
string
) ($row[
'parent'
] ??
''
),
94
(
string
) ($row[
'action'
] ??
''
),
95
(
bool
) $row[
'external'
],
96
(
bool
) $row[
'core'
]
97
);
98
}
99
100
public
function
get
(
string
$identifier): ?
Entry
101
{
102
if
(isset($this->cache[$identifier]) && $this->
has
($identifier)) {
103
return
$this->cache[$identifier];
104
}
105
106
$row = $this->db->queryF(
107
'SELECT * FROM '
. self::TABLE_NAME .
' WHERE id = %s AND type != 1'
,
108
[
'text'
],
109
[$identifier]
110
)->fetchAssoc();
111
if
($row ===
null
) {
112
return
null
;
113
}
114
return
$this->
fromDB
($row);
115
}
116
117
public
function
has
(
string
$identifier): bool
118
{
119
return
$this->db->queryF(
120
'SELECT id FROM '
. self::TABLE_NAME .
' WHERE id = %s AND type != 1'
,
121
[
'text'
],
122
[$identifier]
123
)->numRows() > 0;
124
}
125
126
public
function
blank
():
Entry
127
{
128
return
new
EntryDTO
(
''
,
''
,
true
, 0,
''
,
false
);
129
}
130
131
public
function
store
(
Entry
$entry):
Entry
132
{
133
if
($entry->
getId
() ===
''
|| !$this->
has
($entry->
getId
())) {
134
return
$this->
create
($entry);
135
}
136
137
return
$this->
update
($entry);
138
}
139
140
private
function
create
(
Entry
$entry):
Entry
141
{
142
if
($this->provider ===
null
) {
143
throw
new \LogicException(
'No provider set'
);
144
}
145
146
if
($entry->
getId
() ===
''
) {
147
$entry = $entry->
withId
($this->provider->getNewIdentification()->serialize());
148
}
149
$this->db->insert(
150
self::TABLE_NAME,
151
[
152
'id'
=> [
'text'
, $entry->
getId
()],
153
'type'
=> [
'integer'
, 2],
154
'title'
=> [
'text'
, $entry->
getTitle
()],
155
'position'
=> [
'integer'
, $entry->
getPosition
()],
156
'is_active'
=> [
'integer'
, $entry->
isActive
() ? 1 : 0],
157
'parent'
=> [
'text'
, $entry->
getParent
()],
158
'action'
=> [
'text'
, $entry->
getAction
()],
159
'external'
=> [
'integer'
, $entry->
isExternal
() ? 1 : 0],
160
'core'
=> [
'integer'
, $entry->
isCore
() ? 1 : 0],
161
]
162
);
163
return
$entry;
164
}
165
166
private
function
update
(
Entry
$entry):
Entry
167
{
168
$this->db->update(
169
self::TABLE_NAME,
170
[
171
'title'
=> [
'text'
, $entry->
getTitle
()],
172
'position'
=> [
'integer'
, $entry->
getPosition
()],
173
'is_active'
=> [
'integer'
, $entry->
isActive
() ? 1 : 0],
174
'parent'
=> [
'text'
, $entry->
getParent
()],
175
'action'
=> [
'text'
, $entry->
getAction
()],
176
'external'
=> [
'integer'
, $entry->
isExternal
() ? 1 : 0],
177
'core'
=> [
'integer'
, $entry->
isCore
() ? 1 : 0],
178
],
179
[
'id'
=> [
'text'
, $entry->
getId
()]]
180
);
181
return
$entry;
182
}
183
184
public
function
delete
(
Entry
$entry):
void
185
{
186
if
($entry->isCore()) {
187
return
;
188
}
189
190
$this->db->manipulateF(
191
'DELETE FROM '
. self::TABLE_NAME .
' WHERE id = %s'
,
192
[
'text'
],
193
[$entry->getId()]
194
);
195
}
196
200
public
function
all
(): \
Generator
201
{
202
$this->
preload
();
203
yield
from
$this->cache
;
204
}
205
206
public
function
allForParent
(
string
$parent_identifier): \
Generator
207
{
208
$this->
preload
();
209
foreach
($this->cache as $entry) {
210
if
($entry->getParent() === $parent_identifier) {
211
yield $entry;
212
}
213
}
214
}
215
216
public
function
updatePositionById
(
string
$id
,
int
$position): void
217
{
218
$this->db->update(
219
self::TABLE_NAME,
220
[
'position'
=> [
'integer'
, $position]],
221
[
'id'
=> [
'text'
, $id]]
222
);
223
}
224
225
public
function
getTotalRowCount
(?array $filter_data, ?array $additional_parameters): ?
int
226
{
227
return
null
;
228
}
229
230
public
function
reset
(
FooterMainCollector
$collector): void
231
{
232
$this->db->manipulate(
'DELETE FROM '
. self::TABLE_NAME .
' WHERE type != 1'
);
233
$this->
syncWithGlobalScreen
($collector);
234
}
235
236
}
ILIAS\Awareness\User\Collector\AbstractBaseCollector\collectOnce
collectOnce()
Runs the Collection of all items from the providers.
Definition:
AbstractBaseCollector.php:41
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB
Definition:
EntriesRepositoryDB.php:28
ilFooterCustomGroupsProvider
Definition:
class.ilFooterCustomGroupsProvider.php:32
ILIAS\GlobalScreen\UI\Footer\Entries\Entry\isExternal
isExternal()
FooterMainCollector
Link
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\reset
reset(FooterMainCollector $collector)
Definition:
EntriesRepositoryDB.php:230
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\create
create(Entry $entry)
Definition:
EntriesRepositoryDB.php:140
ILIAS\GlobalScreen\UI\Footer\Entries\Entry\isCore
isCore()
ILIAS\GlobalScreen\Scope\Footer\Collector\FooterMainCollector
Definition:
FooterMainCollector.php:38
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\has
has(string $identifier)
Definition:
EntriesRepositoryDB.php:117
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\store
store(Entry $entry)
Definition:
EntriesRepositoryDB.php:131
ILIAS\GlobalScreen\UI\Footer\Entries\Entry\getTitle
getTitle()
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\update
update(Entry $entry)
Definition:
EntriesRepositoryDB.php:166
ILIAS\GlobalScreen\UI\Footer\Entries\Entry\withId
withId(string $id)
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\fromDB
fromDB(array $row)
Definition:
EntriesRepositoryDB.php:86
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\__construct
__construct(private \ilDBInterface $db, private ?\ilFooterCustomGroupsProvider $provider=null)
Definition:
EntriesRepositoryDB.php:39
ILIAS\GlobalScreen\Scope\Footer\Factory\hasAction
Definition:
hasAction.php:29
ILIAS\GlobalScreen\Scope\Footer\Factory\hasAction\mustOpenInNewViewport
mustOpenInNewViewport()
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepository\syncWithGlobalScreen
syncWithGlobalScreen(FooterMainCollector $collector)
ILIAS\GlobalScreen\Scope\Footer\Factory\hasAction\getAction
getAction()
ILIAS\GlobalScreen\Scope\Footer\Factory\canHaveParent
Definition:
canHaveParent.php:28
ILIAS\GlobalScreen\UI\Footer\Entries\Entry\isActive
isActive()
ILIAS\GlobalScreen\UI\Footer\Entries\Entry\getAction
getAction()
Modal
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\all
all()
Definition:
EntriesRepositoryDB.php:200
ComponentEntry
Hasher
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
$provider
$provider
Definition:
ltitoken.php:80
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\updatePositionById
updatePositionById(string $id, int $position)
Definition:
EntriesRepositoryDB.php:216
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\preload
preload()
Definition:
EntriesRepositoryDB.php:74
ILIAS\GlobalScreen\UI\Footer\Entries
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
EntriesRepository.php:19
ilDBInterface
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\blank
blank()
Definition:
EntriesRepositoryDB.php:126
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\TABLE_NAME
const TABLE_NAME
Definition:
EntriesRepositoryDB.php:32
Hasher
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\GlobalScreen\UI\Footer\Entries\Entry\getId
getId()
Generator
ILIAS\GlobalScreen\Scope\Footer\Collector\FooterMainCollector\getRawUnfilteredItems
getRawUnfilteredItems()
Definition:
FooterMainCollector.php:135
ILIAS\GlobalScreen\UI\Footer\Entries\Entry\getParent
getParent()
$id
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition:
plugin.php:23
ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\from
from(FileStream $stream)
Definition:
GdImageToStreamTrait.php:48
ILIAS\GlobalScreen\UI\Footer\Entries\Entry\getPosition
getPosition()
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\allForParent
allForParent(string $parent_identifier)
Definition:
EntriesRepositoryDB.php:206
hasAction
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepository
Definition:
EntriesRepository.php:23
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\$cache
array $cache
Definition:
EntriesRepositoryDB.php:37
ILIAS\$db
$db
Definition:
class.ilias.php:60
ILIAS\GlobalScreen\UI\Footer\Entries\EntryDTO
Definition:
EntryDTO.php:21
canHaveParent
ILIAS\GlobalScreen\UI\Footer\Entries\EntriesRepositoryDB\getTotalRowCount
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Definition:
EntriesRepositoryDB.php:225
components
ILIAS
GlobalScreen_
classes
UI
Footer
Entries
EntriesRepositoryDB.php
Generated on Thu Apr 3 2025 23:03:02 for ILIAS by
1.8.13 (using
Doxyfile
)