ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
Hidden.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Input\Field
;
22
23
use
ILIAS\Refinery\Constraint
;
24
use
Closure
;
25
use
ILIAS\Refinery\Factory
;
26
use
ILIAS\Data\Factory
as
DataFactory
;
27
31
class
Hidden
extends
FormInput
implements
\ILIAS\UI\Component\Input\Field\Hidden
32
{
33
public
function
__construct
(
DataFactory
$data_factory,
Factory
$refinery
)
34
{
35
parent::__construct
($data_factory, $refinery,
''
, null);
36
}
37
38
public
function
getUpdateOnLoadCode
():
Closure
39
{
40
return
static
function
() {
41
};
42
}
43
44
protected
function
getConstraintForRequirement
(): ?
Constraint
45
{
46
return
null;
47
}
48
49
protected
function
isClientSideValueOk
($value): bool
50
{
51
return
true
;
52
}
53
}
ILIAS\UI\Implementation\Component\Input\Field\Hidden\getConstraintForRequirement
getConstraintForRequirement()
Definition:
Hidden.php:44
ILIAS\UI\Implementation\Component\Input\Field\Hidden\getUpdateOnLoadCode
getUpdateOnLoadCode()
Get update code.
Definition:
Hidden.php:38
ILIAS\Refinery\Constraint
A constraint encodes some resrtictions on values.
Definition:
Constraint.php:31
Closure
ILIAS\UI\Implementation\Component\Input\Field\Hidden\isClientSideValueOk
isClientSideValueOk($value)
Definition:
Hidden.php:49
ILIAS\UI\Implementation\Component\Input\Field
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Checkbox.php:21
ILIAS\UI\Implementation\Component\Input\Field\Hidden\__construct
__construct(DataFactory $data_factory, Factory $refinery)
Definition:
Hidden.php:33
Factory
Factory
ILIAS\UI\Component\Input\Field\Hidden
Definition:
Hidden.php:28
ILIAS\UI\Implementation\Component\Input\Field\Hidden
Definition:
Hidden.php:31
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ILIAS\UI\Component\Input\Container\Form\FormInput
This describes inputs that can be used in forms.
Definition:
FormInput.php:31
Constraint
ILIAS\Repository\$refinery
Refinery Factory $refinery
Definition:
trait.BaseGUIRequest.php:36
src
UI
Implementation
Component
Input
Field
Hidden.php
Generated on Tue Apr 8 2025 22:03:05 for ILIAS by
1.8.13 (using
Doxyfile
)