ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Hidden.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24use Closure;
26use ILIAS\Data\Factory as DataFactory;
27
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
45 {
46 return null;
47 }
48
49 protected function isClientSideValueOk($value): bool
50 {
51 return true;
52 }
53}
Factory for Date Formats.
Definition: Factory.php:27
Builds data types.
Definition: Factory.php:36
__construct(DataFactory $data_factory, Factory $refinery)
Definition: Hidden.php:33
A constraint encodes some resrtictions on values.
Definition: Constraint.php:32
This describes inputs that can be used in forms.
Definition: FormInput.php:33
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21