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
server_side_error.php
Go to the documentation of this file.
1
<?php
2
function
server_side_error
()
3
{
4
global
$DIC
;
5
$factory
= $DIC->ui()->factory();
6
$renderer = $DIC->ui()->renderer();
7
8
if
(isset(
$_GET
[
'example'
]) &&
$_GET
[
'example'
] == 4) {
9
// The File-Dropzones will expect a valid json-Status (success true or false).
10
echo json_encode([
'success'
=>
false
,
'message'
=>
'Unable to store file on server'
]);
11
exit
(0);
12
}
13
14
$uploadUrl =
$_SERVER
[
'REQUEST_URI'
] .
'&example=4'
;
15
$dropzone =
$factory
->dropzone()->file()->standard($uploadUrl)
16
->withMessage(
'Drag and drop your files here. Note that any upload will be failing!'
)
17
->withUploadButton(
$factory
->button()->standard(
'Upload'
,
''
));
18
return
$renderer->render($dropzone);
19
}
exit
exit
Definition:
login.php:29
$_GET
$_GET["client_id"]
Definition:
cfg.phpunit.template.php:12
server_side_error
server_side_error()
Definition:
server_side_error.php:2
$_SERVER
$_SERVER['HTTP_HOST']
Definition:
raiseError.php:10
$DIC
global $DIC
Definition:
goto.php:24
$factory
$factory
Definition:
metadata.php:58
src
UI
examples
Dropzone
File
Standard
server_side_error.php
Generated on Wed Apr 2 2025 21:01:44 for ILIAS by
1.8.13 (using
Doxyfile
)