Why don't you simply search the documentation ?
A search for "validator" would have given you "Zend_Validate" and 2-4 sections about validators.

Greetings
Thomas Weidner, I18N Team Leader, Zend Framework
http://www.thomasweidner.com

----- Original Message ----- From: "aoohralex" <[email protected]>
To: <[email protected]>
Sent: Saturday, September 19, 2009 2:16 PM
Subject: [fw-general] list of validators in Zend like in Symfony Framework



Where is list of validators in Zend ? Here rather not:
http://framework.zend.com/manual/en/zend.form.elements.html#zend.form.elements.validators
In Symfony Framework I have in documentation list of all validator:
http://www.symfony-project.org/api/1_2/validator


I need integer validator and number validator because I have these fields in
form:
$this->addElement('text', 'price', array(
           'label'      => 'Price:',
           'required'   => true,
           'filters'    => array('StringTrim')
       ));

$this->addElement('text', 'pages', array(
           'label'      => 'Number of pages:',
           'required'   => true,
           'filters'    => array('StringTrim')
       ));

And I can't find that in documentation.
--
View this message in context: http://www.nabble.com/list-of-validators-in-Zend-like-in-Symfony-Framework-tp25521064p25521064.html Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to