ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
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\Data\DateFormat\Factory
Factory for Date Formats.
Definition:
Factory.php:27
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:36
ILIAS\UI\Implementation\Component\Input\Field\Hidden
Definition:
Hidden.php:32
ILIAS\UI\Implementation\Component\Input\Field\Hidden\__construct
__construct(DataFactory $data_factory, Factory $refinery)
Definition:
Hidden.php:33
ILIAS\UI\Implementation\Component\Input\Field\Hidden\isClientSideValueOk
isClientSideValueOk($value)
Definition:
Hidden.php:49
ILIAS\UI\Implementation\Component\Input\Field\Hidden\getUpdateOnLoadCode
getUpdateOnLoadCode()
Get update code.
Definition:
Hidden.php:38
ILIAS\UI\Implementation\Component\Input\Field\Hidden\getConstraintForRequirement
getConstraintForRequirement()
Definition:
Hidden.php:44
ILIAS\Refinery\Constraint
A constraint encodes some resrtictions on values.
Definition:
Constraint.php:32
ILIAS\UI\Component\Input\Container\Form\FormInput
This describes inputs that can be used in forms.
Definition:
FormInput.php:33
ILIAS\UI\Component\Input\Field\Hidden
Definition:
Hidden.php:29
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
Definition:
PluginProviderHelper.php:38
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\examples\Layout\Page\Standard\$refinery
$refinery
Definition:
ui.php:137
components
ILIAS
UI
src
Implementation
Component
Input
Field
Hidden.php
Generated on Sat Oct 18 2025 23:04:38 for ILIAS by
1.9.4 (using
Doxyfile
)