ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilImprintGUI.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
require_once(
"./Services/COPage/classes/class.ilPageObjectGUI.php"
);
5
require_once(
"./Services/Imprint/classes/class.ilImprint.php"
);
6
17
class
ilImprintGUI
extends
ilPageObjectGUI
18
{
22
protected
$locator
;
23
27
protected
$main_menu
;
28
32
public
function
__construct
()
33
{
34
global
$DIC
;
35
36
$this->tpl = $DIC[
"tpl"
];
37
$this->ctrl = $DIC->ctrl();
38
$this->locator = $DIC[
"ilLocator"
];
39
$this->lng = $DIC->language();
40
$this->main_menu = $DIC[
"ilMainMenu"
];
41
$tpl
= $DIC[
"tpl"
];
42
43
if
(!
ilImprint::_exists
(
"impr"
, 1)) {
44
$page =
new
ilImprint
(
"impr"
);
45
$page->setId(1);
46
$page->create();
47
}
48
49
// there is only 1 imprint page
50
parent::__construct
(
"impr"
, 1);
51
52
// content style (using system defaults)
53
include_once(
"./Services/Style/Content/classes/class.ilObjStyleSheet.php"
);
54
55
$tpl
->setCurrentBlock(
"SyntaxStyle"
);
56
$tpl
->setVariable(
57
"LOCATION_SYNTAX_STYLESHEET"
,
58
ilObjStyleSheet::getSyntaxStylePath
()
59
);
60
$tpl
->parseCurrentBlock();
61
62
$tpl
->setCurrentBlock(
"ContentStyle"
);
63
$tpl
->setVariable(
64
"LOCATION_CONTENT_STYLESHEET"
,
65
ilObjStyleSheet::getContentStylePath
(0)
66
);
67
$tpl
->parseCurrentBlock();
68
}
69
73
public
function
executeCommand
()
74
{
75
$ilCtrl =
$this->ctrl
;
76
$ilLocator =
$this->locator
;
77
$lng
=
$this->lng
;
78
79
if
($_REQUEST[
"baseClass"
] ==
"ilImprintGUI"
) {
80
$this->
renderFullscreen
();
81
}
82
83
$next_class = $ilCtrl->getNextClass($this);
84
85
$title =
$lng
->txt(
"adm_imprint"
);
86
87
switch
($next_class) {
88
case
"ilpageobjectgui"
:
89
die(
"Deprecated. ilImprintGUI gui forwarding to ilpageobject"
);
90
return
;
91
92
default
:
93
$this->
setPresentationTitle
($title);
94
95
$ilLocator->addItem(
96
$title,
97
$ilCtrl->getLinkTarget($this,
"preview"
)
98
);
99
100
return
parent::executeCommand();
101
}
102
}
103
104
public
function
postOutputProcessing
($a_output)
105
{
106
$lng
=
$this->lng
;
107
108
if
($this->
getOutputMode
() ==
ilPageObjectGUI::PREVIEW
) {
109
if
(!$this->
getPageObject
()->getActive()) {
110
ilUtil::sendInfo
(
$lng
->txt(
"adm_imprint_inactive"
));
111
}
112
}
113
114
return
$a_output;
115
}
116
117
protected
function
renderFullscreen
()
118
{
119
$tpl
=
$this->tpl
;
120
$lng
=
$this->lng
;
121
122
if
(!
ilImprint::isActive
()) {
123
ilUtil::redirect
(
"ilias.php?baseClass=ilDashboardGUI"
);
124
}
125
$tpl
->setTitle(
$lng
->txt(
"imprint"
));
126
$tpl
->loadStandardTemplate();
127
128
$this->
setRawPageContent
(
true
);
129
$html = $this->
showPage
();
130
$tpl
->setContent($html);
131
132
$tpl
->printToStdout(
"DEFAULT"
,
true
,
false
);
133
exit
();
134
}
135
}
ilObjStyleSheet\getContentStylePath
static getContentStylePath($a_style_id, $add_random=true, $add_token=true)
get content style path
Definition:
class.ilObjStyleSheet.php:1810
ilPageObject\_exists
static _exists($a_parent_type, $a_id, $a_lang="", $a_no_cache=false)
Checks whether page exists.
Definition:
class.ilPageObject.php:400
exit
exit
Definition:
login.php:29
ilPageObjectGUI\getPageObject
getPageObject()
Get Page Object.
Definition:
class.ilPageObjectGUI.php:377
ilImprintGUI\executeCommand
executeCommand()
execute command
Definition:
class.ilImprintGUI.php:73
ilImprintGUI\$locator
$locator
Definition:
class.ilImprintGUI.php:22
ilPageObjectGUI\$tpl
$tpl
Definition:
class.ilPageObjectGUI.php:30
ilPageObjectGUI
Class ilPageObjectGUI.
Definition:
class.ilPageObjectGUI.php:16
ilImprintGUI\__construct
__construct()
Constructor.
Definition:
class.ilImprintGUI.php:32
ilPageObjectGUI\PREVIEW
const PREVIEW
Definition:
class.ilPageObjectGUI.php:20
ilImprintGUI\$main_menu
$main_menu
Definition:
class.ilImprintGUI.php:27
ilUtil\sendInfo
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
Definition:
class.ilUtil.php:4518
ilImprintGUI\postOutputProcessing
postOutputProcessing($a_output)
Definition:
class.ilImprintGUI.php:104
ilPageObjectGUI\$lng
$lng
Definition:
class.ilPageObjectGUI.php:35
ilImprint
Class ilImprint.
Definition:
class.ilImprint.php:13
$DIC
global $DIC
Definition:
goto.php:24
ilPageObjectGUI\setRawPageContent
setRawPageContent($a_rawpagecontent)
Set Get raw page content only.
Definition:
class.ilPageObjectGUI.php:830
ilPageObjectGUI\setPresentationTitle
setPresentationTitle($a_title="")
Definition:
class.ilPageObjectGUI.php:407
ilPageObjectGUI\getOutputMode
getOutputMode()
Definition:
class.ilPageObjectGUI.php:392
ilObjStyleSheet\getSyntaxStylePath
static getSyntaxStylePath()
get syntax style path
Definition:
class.ilObjStyleSheet.php:1868
ilPageObjectGUI\$ctrl
$ctrl
Definition:
class.ilPageObjectGUI.php:40
ilImprintGUI
Class ilImprintGUI.
Definition:
class.ilImprintGUI.php:17
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:40
ilPageObjectGUI\showPage
showPage()
display content of page
Definition:
class.ilPageObjectGUI.php:1310
ilImprintGUI\renderFullscreen
renderFullscreen()
Definition:
class.ilImprintGUI.php:117
ilUtil\redirect
static redirect($a_script)
Definition:
class.ilUtil.php:3302
ilImprint\isActive
static isActive()
Definition:
class.ilImprint.php:25
Services
Imprint
classes
class.ilImprintGUI.php
Generated on Thu Apr 3 2025 21:01:22 for ILIAS by
1.8.13 (using
Doxyfile
)