add()
get()
getInvalidInput()
getMessages()
getRawValue()
getRawValues()
getValidInput()
getValue()
getValues()
has()
isValid()
remove()
setData()
setValidationGroup()
VALIDATE_ALL
add(\Zend\InputFilter\InputInterface | \Zend\InputFilter\InputFilterInterface | array $input, null | string $name) : \Zend\InputFilter\InputFilterInterface
nullstring
Name used to retrieve this input
get(string $name) : \Zend\InputFilter\InputInterface | \Zend\InputFilter\InputFilterInterface
string
getInvalidInput() : \Zend\InputFilter\InputInterface[]
Implementations should return an associative array of name/input pairs that failed validation.
getMessages() : array
Should return an associative array of named input/message list pairs. Pairs should only be returned for inputs that failed validation.
array
getRawValue(string $name) : mixed
string
mixed
getRawValues() : array
List should be an associative array of named input/value pairs, with the values unfiltered.
array
getValidInput() : \Zend\InputFilter\InputInterface[]
Implementations should return an associative array of name/input pairs that passed validation.
getValue(string $name) : mixed
string
mixed
getValues() : array
List should be an associative array, with the values filtered. If validation failed, this should raise an exception.
array
has(string $name) : bool
string
bool
isValid() : bool
bool
setData(array | \Traversable $data) : \Zend\InputFilter\InputFilterInterface
setValidationGroup(mixed $name) : \Zend\InputFilter\InputFilterInterface
When provided, calls to isValid() will only validate the provided set.
If the initial value is VALIDATE_ALL, the current validation group, if any, should be cleared.
Implementations should allow passing a single array value, or multiple arguments, each specifying a single input.
mixed
VALIDATE_ALL