sfValidatorChoice validates than the value is one of the expected values.
Method Summary
-
configure($options, $messages)
Configures the current validator.
-
doClean()
@see sfValidatorBase
-
Boolean
inChoices($value, $choices)
Checks if a value is part of given choices (see bug #4212)
addMessage , addOption , addRequiredOption , asString , clean , configure , doClean , getCharset , getDefaultMessages , getDefaultOptions , getEmptyValue , getErrorCodes , getMessage , getMessages , getMessagesWithoutDefaults , getOption , getOptions , getOptionsWithoutDefaults , getRequiredOptions , hasOption , isEmpty , setCharset , setDefaultMessages , setDefaultOptions , setMessage , setMessages , setOption , setOptions , __construct
Method Details
-
configure ($options, $messages)
Browse code
| $options |
An array of options |
| $messages |
An array of error messages |
Configures the current validator.
Available options: * choices: An array of expected values (required)
-
@see sfValidatorBase
-
(Boolean) inChoices ($value, $choices)
Browse code
| $value |
The value to check |
| $choices |
The array of available choices |
Checks if a value is part of given choices (see bug #4212)
|