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
EmbeddedApplicationPagePartProvider.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\components\WOPI\Embed
;
22
23
use
ILIAS\UI\Component\MainControls\MainBar
;
24
use
ILIAS\UI\Component\MainControls\MetaBar
;
25
use
ILIAS\GlobalScreen\Scope\Layout\Provider\PagePart\PagePartProvider
;
26
use
ILIAS\UI\Component\Legacy\Content
;
27
use
ILIAS\UI\Component\Breadcrumbs\Breadcrumbs
;
28
use
ILIAS\UI\Component\Image\Image
;
29
use
ILIAS\UI\Component\MainControls\Footer
;
30
use
ILIAS\UI\Component\Toast\Container
;
31
35
class
EmbeddedApplicationPagePartProvider
implements
PagePartProvider
36
{
37
public
function
__construct
(
38
private
readonly
PagePartProvider
$page_part_provider,
39
private
readonly
EmbeddedApplication
$embedded_application
40
) {
41
}
42
43
public
function
getContent
(): ?
Content
44
{
45
return
$this->page_part_provider->
getContent
();
46
}
47
48
public
function
getMetaBar
(): ?
MetaBar
49
{
50
if
($this->embedded_application->isInline()) {
51
return
$this->page_part_provider->getMetaBar();
52
}
53
54
return
null
;
55
}
56
57
public
function
getMainBar
(): ?
MainBar
58
{
59
if
($this->embedded_application->isInline()) {
60
return
$this->page_part_provider->getMainBar();
61
}
62
return
null
;
63
}
64
65
public
function
getBreadCrumbs
(): ?
Breadcrumbs
66
{
67
if
($this->embedded_application->isInline()) {
68
return
$this->page_part_provider->getBreadCrumbs();
69
}
70
return
null
;
71
}
72
73
public
function
getLogo
(): ?
Image
74
{
75
return
$this->page_part_provider->getLogo();
76
}
77
78
public
function
getResponsiveLogo
(): ?
Image
79
{
80
return
$this->page_part_provider->getResponsiveLogo();
81
}
82
83
public
function
getFaviconPath
(): string
84
{
85
return
$this->page_part_provider->getFaviconPath();
86
}
87
88
public
function
getSystemInfos
(): array
89
{
90
return
$this->page_part_provider->getSystemInfos();
91
}
92
93
public
function
getFooter
(): ?
Footer
94
{
95
return
null
;
96
}
97
98
public
function
getTitle
(): string
99
{
100
return
$this->page_part_provider->getTitle();
101
}
102
103
public
function
getShortTitle
(): string
104
{
105
return
$this->page_part_provider->getShortTitle();
106
}
107
108
public
function
getViewTitle
(): string
109
{
110
return
$this->page_part_provider->getViewTitle();
111
}
112
113
public
function
getToastContainer
(): ?
Container
114
{
115
return
null
;
116
}
117
}
Container
Image
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\__construct
__construct(private readonly PagePartProvider $page_part_provider, private readonly EmbeddedApplication $embedded_application)
Definition:
EmbeddedApplicationPagePartProvider.php:37
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getViewTitle
getViewTitle()
Definition:
EmbeddedApplicationPagePartProvider.php:108
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getLogo
getLogo()
Definition:
EmbeddedApplicationPagePartProvider.php:73
MainBar
ILIAS\UI\Component\Legacy\Content
Definition:
Content.php:32
ILIAS\UI\Component\MainControls\MainBar
This describes the MainBar.
Definition:
MainBar.php:33
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getToastContainer
getToastContainer()
Definition:
EmbeddedApplicationPagePartProvider.php:113
ILIAS\UI\Component\Legacy\Content\getContent
getContent()
Get content as string stored in this component.
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getMetaBar
getMetaBar()
Definition:
EmbeddedApplicationPagePartProvider.php:48
ILIAS\GlobalScreen\Scope\Layout\Provider\PagePart\PagePartProvider
Interface PagePartProvider.
Definition:
PagePartProvider.php:35
PagePartProvider
ILIAS\UI\Component\Breadcrumbs\Breadcrumbs
Definition:
Breadcrumbs.php:30
ILIAS\UI\Component\Legacy\Content
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:35
Footer
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getFooter
getFooter()
Definition:
EmbeddedApplicationPagePartProvider.php:93
ILIAS\components\WOPI\Embed
Definition:
EmbeddedApplication.php:21
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
MetaBar
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getSystemInfos
getSystemInfos()
Definition:
EmbeddedApplicationPagePartProvider.php:88
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getBreadCrumbs
getBreadCrumbs()
Definition:
EmbeddedApplicationPagePartProvider.php:65
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getTitle
getTitle()
Definition:
EmbeddedApplicationPagePartProvider.php:98
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getFaviconPath
getFaviconPath()
Definition:
EmbeddedApplicationPagePartProvider.php:83
ILIAS\components\WOPI\Embed\EmbeddedApplication
Definition:
EmbeddedApplication.php:34
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getShortTitle
getShortTitle()
Definition:
EmbeddedApplicationPagePartProvider.php:103
ILIAS\UI\Component\MainControls\MetaBar
This describes the MetaBar.
Definition:
MetaBar.php:32
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider
Definition:
EmbeddedApplicationPagePartProvider.php:35
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getContent
getContent()
Definition:
EmbeddedApplicationPagePartProvider.php:43
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getMainBar
getMainBar()
Definition:
EmbeddedApplicationPagePartProvider.php:57
Breadcrumbs
ILIAS\UI\Component\MainControls\Footer
Definition:
Footer.php:31
ILIAS\components\WOPI\Embed\EmbeddedApplicationPagePartProvider\getResponsiveLogo
getResponsiveLogo()
Definition:
EmbeddedApplicationPagePartProvider.php:78
components
ILIAS
WOPI
classes
Embed
EmbeddedApplicationPagePartProvider.php
Generated on Wed Apr 2 2025 23:04:10 for ILIAS by
1.8.13 (using
Doxyfile
)