Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where can I find a list of all the validators and filters of a Zend_Form?

I'm learning Zend Framework using their manual at framework.zend.com.

where can I find the full list of all the validators and filters that can be used in a Zend_Form ?

Using Zend Framework 1.11.6.

example:

filters: 'StringTrim' 

validators: 'EmailAddress'

thank you!

like image 214
ufk Avatar asked Jun 03 '11 09:06

ufk


2 Answers

You can use all the shipped filters & validators with zend-form aswell as custom ones.

like image 37
Fge Avatar answered Nov 03 '22 13:11

Fge


Check the following paths of your Zend Framework installation folder:

/Zend/Validate/*
/Zend/Filter/*

Or check the corresponding manual pages:

http://framework.zend.com/manual/en/zend.filter.html

http://framework.zend.com/manual/en/zend.validate.html

like image 77
Yeroon Avatar answered Nov 03 '22 13:11

Yeroon