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
PostDataFromServerRequest.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2017 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5
namespace
ILIAS\UI\Implementation\Component\Input\Container\Form
;
6
7
use
ILIAS\UI\Implementation\Component\Input\InputData
;
8
9
use
Psr\Http\Message\ServerRequestInterface
;
10
15
class
PostDataFromServerRequest
implements
InputData
16
{
17
21
protected
$parsed_body
;
22
23
24
public
function
__construct
(ServerRequestInterface $request)
25
{
26
$this->parsed_body = $request->getParsedBody();
27
}
28
29
33
public
function
get
(
$name
)
34
{
35
if
(!isset($this->parsed_body[
$name
])) {
36
throw
new \LogicException(
"'$name' is not contained in posted data."
);
37
}
38
39
return
$this->parsed_body[
$name
];
40
}
41
42
46
public
function
getOr
(
$name
, $default)
47
{
48
if
(!isset($this->parsed_body[
$name
])) {
49
return
$default;
50
}
51
52
return
$this->parsed_body[
$name
];
53
}
54
}
InputData
ILIAS\UI\Implementation\Component\Input\Container\Form\PostDataFromServerRequest\$parsed_body
$parsed_body
Definition:
PostDataFromServerRequest.php:21
ILIAS\UI\Implementation\Component\Input\InputData
Describes how Input-Elements want to interact with posted data.
Definition:
InputData.php:12
ServerRequestInterface
$name
if($format !==null) $name
Definition:
metadata.php:230
ILIAS\UI\Implementation\Component\Input\Container\Form
Definition:
Factory.php:5
ILIAS\UI\Implementation\Component\Input\Container\Form\PostDataFromServerRequest
Implements interaction of input element with post data from psr-7 server request. ...
Definition:
PostDataFromServerRequest.php:15
ILIAS\UI\Implementation\Component\Input\Container\Form\PostDataFromServerRequest\__construct
__construct(ServerRequestInterface $request)
Definition:
PostDataFromServerRequest.php:24
ILIAS\UI\Implementation\Component\Input\Container\Form\PostDataFromServerRequest\getOr
getOr($name, $default)
Definition:
PostDataFromServerRequest.php:46
src
UI
Implementation
Component
Input
Container
Form
PostDataFromServerRequest.php
Generated on Thu Apr 3 2025 20:01:23 for ILIAS by
1.8.13 (using
Doxyfile
)