|
ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
|
Inheritance diagram for ILIAS\Validation\Constraints\LogicalOr:
Collaboration diagram for ILIAS\Validation\Constraints\LogicalOr:Public Member Functions | ||||||
| __construct (array $other, Data\Factory $data_factory, \ilLanguage $lng) | ||||||
| LogicalOr constructor. More... | ||||||
Public Member Functions inherited from ILIAS\Validation\Constraints\Custom | ||||||
| __construct (callable $is_ok, $error, Data\Factory $data_factory, \ilLanguage $lng) | ||||||
| If $error is a callable it needs to take two parameters: More... | ||||||
| check ($value) | ||||||
Checks the provided value.Should not throw if accepts($value).
UnexpectedValueException if value does not comply with encoded constraint.
| ||||||
| accepts ($value) | ||||||
Tells if the provided value complies.
| ||||||
| problemWith ($value) | ||||||
Tells what the problem with the provided value is.Should return null if accepts($value).
| ||||||
| restrict (Result $result) | ||||||
Restricts a Result.Must do nothing with the result if $result->isError(). Must replace the result with an error according to problemWith() if !accepts($result->value()).
| ||||||
| withProblemBuilder (callable $builder) | ||||||
Get a constraint like this one with a builder for a custom error message.problemWith() must return an error message according to the new builder for the new constraint.The builder needs to be callable that takes two parameters:
| ||||||
| getErrorMessage ($value) | ||||||
| Get the problem message. More... | ||||||
| check ($value) | ||||||
| Checks the provided value. More... | ||||||
| accepts ($value) | ||||||
| Tells if the provided value complies. More... | ||||||
| problemWith ($value) | ||||||
| Tells what the problem with the provided value is. More... | ||||||
| restrict (Result $result) | ||||||
| Restricts a Result. More... | ||||||
| withProblemBuilder (callable $builder) | ||||||
| Get a constraint like this one with a builder for a custom error message. More... | ||||||
Protected Attributes | |
| $other = [] | |
Protected Attributes inherited from ILIAS\Validation\Constraints\Custom | |
| $data_factory | |
| $lng | |
| $is_ok | |
| $error | |
Additional Inherited Members | |
Protected Member Functions inherited from ILIAS\Validation\Constraints\Custom | |
| getLngClosure () | |
| Get the closure to be passed to the error-function that does i18n and sprintf. More... | |
Definition at line 14 of file LogicalOr.php.
| ILIAS\Validation\Constraints\LogicalOr::__construct | ( | array | $other, |
| Data\Factory | $data_factory, | ||
| \ilLanguage | $lng | ||
| ) |
LogicalOr constructor.
| Constraint[] | $other | |
| Data\Factory | $data_factory |
Definition at line 26 of file LogicalOr.php.
References ILIAS\Validation\Constraints\Custom\$data_factory, ILIAS\Validation\Constraints\Custom\$lng, and ILIAS\Validation\Constraints\LogicalOr\$other.
|
protected |
Definition at line 19 of file LogicalOr.php.
Referenced by ILIAS\Validation\Constraints\LogicalOr\__construct().