abstract class AbstractTranslatableValidator implements TranslatableValidatorInterface (View source)

Class AbstractTranslatableValidator Abstract class for managing translatable requirements and errors.

\@package Concrete\Core\Validator

Properties

protected array $translatable_requirements
protected $translatable_errors

Methods

string|mixed
getErrorString(int $code, mixed $value, mixed $default = null)

Get an error string given a code and a passed value.

bool
isTranslatableStringValueValid($value)

Check to see if $value a valid stand in for a translatable string.

setRequirementString(int $code, string|Closure $message)

Set the requirement string to a mixed value Closure format: function(TranslatableValidatorInterface $validator, int $code): string.

setErrorString(int $code, string|Closure $message)

Set the error string to a string or to a closure Closure format: function(TranslatableValidatorInterface $validator, int $code, mixed $passed): string.

string[]
getRequirementStrings()

Get the validator requirements in the form of an array keyed by it's respective error code.

Details

protected string|mixed getErrorString(int $code, mixed $value, mixed $default = null)

Get an error string given a code and a passed value.

Parameters

int $code
mixed $value
mixed $default

Return Value

string|mixed

Returns a string or $default

protected bool isTranslatableStringValueValid($value)

Check to see if $value a valid stand in for a translatable string.

Parameters

$value

Return Value

bool

setRequirementString(int $code, string|Closure $message)

Set the requirement string to a mixed value Closure format: function(TranslatableValidatorInterface $validator, int $code): string.

Parameters

int $code

The error code

string|Closure $message

Either a plain string, or a closure that returns a string

setErrorString(int $code, string|Closure $message)

Set the error string to a string or to a closure Closure format: function(TranslatableValidatorInterface $validator, int $code, mixed $passed): string.

where $passed is whatever was passed to ValidatorInterface::isValid

Parameters

int $code

The error code

string|Closure $message

Either a plain string, or a closure that returns a string

string[] getRequirementStrings()

Get the validator requirements in the form of an array keyed by it's respective error code.

Example: [ self::E_TOO_SHORT => 'Must be at least 10 characters' ]

Return Value

string[]