Validation MessagesEach validator which is based on Zend_Validate provides one or multiple messages in the case of a failed validation. You can use this information to set your own messages, or to translate existing messages which a validator could return to something different. These validation messages are constants which can be found at top of each validator class. Let's look into Zend_Validate_GreaterThan for an descriptive example:
As you can see the constant self::NOT_GREATER refers to the failure and is used as key, and the message itself is used as value of the message array. You can retrieve all message templates from a validator by using the getMessageTemplates() method. It returns you the above array which contains all messages a validator could return in the case of a failed validation.
Using the setMessage() method you can set another message to be returned in case of the specified failure.
The second parameter defines the failure which will be overridden. When you omit this parameter, then the given message will be set for all possible failures of this validator. Using pre-translated validation messagesZend Framework is shipped with more than 45 different validators with more than 200 failure messages. It can be a tedious task to translate all of these messages. But for your convenience Zend Framework comes with already pre-translated validation messages. You can find them within the path /resources/languages in your Zend Framework installation.
So to translate all validation messages to German for example, all you have to do is to attach a translator to Zend_Validate using these resource files.
Limit the size of a validation messageSometimes it is necessary to limit the maximum size a validation message can have. For example when your view allows a maximum size of 100 chars to be rendered on one line. To simplify the usage, Zend_Validate is able to automatically limit the maximum returned size of a validation message. To get the actual set size use Zend_Validate::getMessageLength(). If it is -1, then the returned message will not be truncated. This is default behaviour. To limit the returned message size use Zend_Validate::setMessageLength(). Set it to any integer size you need. When the returned message exceeds the set size, then the message will be truncated and the string '...' will be added instead of the rest of the message.
|