ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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
PrintLayoutProvider.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Test\Presentation
;
22
23
use
ILIAS\GlobalScreen\Scope\Layout\Factory\MainBarModification
;
24
use
ILIAS\GlobalScreen\Scope\Layout\Factory\MetaBarModification
;
25
use
ILIAS\GlobalScreen\Scope\Layout\Provider\AbstractModificationProvider
;
26
use
ILIAS\GlobalScreen\Scope\Layout\Factory\BreadCrumbsModification
;
27
use
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
;
28
use
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
;
29
use
ILIAS\UI\Component\Breadcrumbs\Breadcrumbs
;
30
use
ILIAS\UI\Component\MainControls\MetaBar
;
31
use
ILIAS\UI\Component\MainControls\MainBar
;
32
33
class
PrintLayoutProvider
extends
AbstractModificationProvider
34
{
35
public
const
TEST_CONTEXT_PRINT
=
'test_context_print'
;
36
37
private
const
MODIFICATION_PRIORITY
= 5;
//slightly above "low"
38
39
public
function
isInterestedInContexts
():
ContextCollection
40
{
41
return
$this->context_collection->
main
();
42
}
43
44
protected
function
isTestContextPrint
(
CalledContexts
$called_contexts): bool
45
{
46
return
$called_contexts->
current
()->getAdditionalData()
47
->is(self::TEST_CONTEXT_PRINT,
true
);
48
}
49
50
public
function
getMainBarModification
(
CalledContexts
$called_contexts): ?
MainBarModification
51
{
52
if
(!$this->
isTestContextPrint
($called_contexts)) {
53
return
null
;
54
}
55
return
$this->
globalScreen
()->layout()->factory()->mainbar()->withModification(
56
static
fn(?
MainBar
$mainbar): ?
MainBar
=>
null
57
)->withPriority(self::MODIFICATION_PRIORITY);
58
}
59
60
public
function
getMetaBarModification
(
CalledContexts
$called_contexts): ?
MetaBarModification
61
{
62
if
(!$this->
isTestContextPrint
($called_contexts)) {
63
return
null
;
64
}
65
66
return
$this->
globalScreen
()->layout()->factory()->metabar()->withModification(
67
static
fn(?
MetaBar
$metabar): ?
MetaBar
=>
null
68
)->withPriority(self::MODIFICATION_PRIORITY);
69
}
70
71
public
function
getBreadCrumbsModification
(
CalledContexts
$called_contexts): ?
BreadCrumbsModification
72
{
73
if
(!$this->
isTestContextPrint
($called_contexts)) {
74
return
null
;
75
}
76
77
return
$this->
globalScreen
()->layout()->factory()->breadcrumbs()->withModification(
78
static
fn(?
Breadcrumbs
$breadcrumbs): ?
Breadcrumbs
=>
null
79
)->withPriority(self::MODIFICATION_PRIORITY);
80
}
81
}
BreadCrumbsModification
ILIAS\GlobalScreen\Scope\Layout\Factory\MainBarModification
Class MainBar.
Definition:
MainBarModification.php:29
MainBar
ILIAS\UI\Component\MainControls\MainBar
This describes the MainBar.
Definition:
MainBar.php:33
ILIAS\Test\Presentation\PrintLayoutProvider\getMetaBarModification
getMetaBarModification(CalledContexts $called_contexts)
Definition:
PrintLayoutProvider.php:60
ILIAS\GlobalScreen\Scope\Layout\Factory\BreadCrumbsModification
Class BreadCrumbs.
Definition:
BreadCrumbsModification.php:29
ILIAS\Test\Presentation\PrintLayoutProvider
Definition:
PrintLayoutProvider.php:33
ILIAS\GlobalScreen\Provider\AbstractProvider\globalScreen
globalScreen()
Definition:
AbstractProvider.php:38
ILIAS\Test\Presentation\PrintLayoutProvider\isInterestedInContexts
isInterestedInContexts()
Definition:
PrintLayoutProvider.php:39
ILIAS\Test\Presentation\PrintLayoutProvider\getMainBarModification
getMainBarModification(CalledContexts $called_contexts)
Definition:
PrintLayoutProvider.php:50
ILIAS\Test\Presentation\PrintLayoutProvider\isTestContextPrint
isTestContextPrint(CalledContexts $called_contexts)
Definition:
PrintLayoutProvider.php:44
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\main
main()
Definition:
ContextCollection.php:92
ILIAS\UI\Component\Breadcrumbs\Breadcrumbs
Definition:
Breadcrumbs.php:30
ILIAS\Test\Presentation\PrintLayoutProvider\getBreadCrumbsModification
getBreadCrumbsModification(CalledContexts $called_contexts)
Definition:
PrintLayoutProvider.php:71
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
MetaBarModification
ILIAS\GlobalScreen\Scope\Layout\Provider\AbstractModificationProvider
Class AbstractModificationProvider.
Definition:
AbstractModificationProvider.php:45
MetaBar
CalledContexts
ILIAS\Test\Presentation\PrintLayoutProvider\MODIFICATION_PRIORITY
const MODIFICATION_PRIORITY
Definition:
PrintLayoutProvider.php:37
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts\current
current()
Definition:
CalledContexts.php:33
MainBarModification
AbstractModificationProvider
ContextCollection
ILIAS\Test\Presentation
Definition:
class.TestScreenGUI.php:21
ILIAS\Test\Presentation\PrintLayoutProvider\TEST_CONTEXT_PRINT
const TEST_CONTEXT_PRINT
Definition:
PrintLayoutProvider.php:35
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
Definition:
CalledContexts.php:29
ILIAS\GlobalScreen\Scope\Layout\Factory\MetaBarModification
Class MetaBarModification.
Definition:
MetaBarModification.php:29
ILIAS\UI\Component\MainControls\MetaBar
This describes the MetaBar.
Definition:
MetaBar.php:32
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
Definition:
ContextCollection.php:30
Breadcrumbs
components
ILIAS
Test
src
Presentation
PrintLayoutProvider.php
Generated on Wed Apr 2 2025 23:03:48 for ILIAS by
1.8.13 (using
Doxyfile
)