ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
error.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
try
{
5
require_once(
"Services/Init/classes/class.ilInitialisation.php"
);
6
ilInitialisation::initILIAS
();
7
$DIC
->globalScreen()->tool()->context()->claim()->external();
8
$local_tpl
=
new
ilGlobalTemplate
(
"tpl.main.html"
,
true
,
true
);
9
$local_tpl
->addBlockFile(
"CONTENT"
,
"content"
,
"tpl.error.html"
);
10
$lng
->loadLanguageModule(
"error"
);
11
// #13515 - link back to "system" [see ilWebAccessChecker::sendError()]
12
$nd
= $tree->getNodeData(ROOT_FOLDER_ID);
13
$txt
=
$lng
->txt(
'error_back_to_repository'
);
14
$local_tpl
->SetCurrentBlock(
"ErrorLink"
);
15
$local_tpl
->SetVariable(
"TXT_LINK"
,
$txt
);
16
$local_tpl
->SetVariable(
"LINK"
,
ilUtil::secureUrl
(
ILIAS_HTTP_PATH
.
'/ilias.php?baseClass=ilRepositoryGUI&client_id='
. CLIENT_ID));
17
$local_tpl
->ParseCurrentBlock();
18
19
ilSession::clear
(
"referer"
);
20
ilSession::clear
(
"message"
);
21
$tpl
->setContent(
$local_tpl
->get());
22
$tpl
->printToStdout();
23
}
catch
(
Exception
$e
) {
24
if
(defined(
'DEVMODE'
) && DEVMODE) {
25
throw
$e
;
26
}
27
28
if
(!($e instanceof \PDOException)) {
29
die($e->getMessage());
30
}
31
}
$local_tpl
$local_tpl
Definition:
error.php:8
ilGlobalTemplate
special template class to simplify handling of ITX/PEAR
Definition:
class.ilGlobalTemplate.php:13
Vendor\Package\$e
$e
Definition:
example_cleaned.php:31
ilInitialisation\initILIAS
static initILIAS()
ilias initialisation
Definition:
class.ilInitialisation.php:1041
$nd
$nd
Definition:
error.php:12
$lng
$lng
Definition:
save_question_post_data.php:23
ilSession\clear
static clear($a_var)
Unset a value.
Definition:
class.ilSession.php:452
$txt
$txt
Definition:
error.php:13
ilUtil\secureUrl
static secureUrl($url)
Prepare secure href attribute.
Definition:
class.ilUtil.php:2845
$DIC
$DIC
Definition:
xapitoken.php:46
ILIAS_HTTP_PATH
const ILIAS_HTTP_PATH
Definition:
StandardNotificationRendererTest.php:7
$tpl
$tpl
Definition:
error.php:11
Exception
error.php
Generated on Thu Apr 3 2025 20:00:45 for ILIAS by
1.8.13 (using
Doxyfile
)