I usually put them in /library/CV/Validate/
Example:
/library/CV/Validate/EmpresaNueva.php:
class CV_Validate_EmpresaNueva extends Zend_Validate_Abstract {
}
Where the library is the place where you have Zend.
The contents of index.php @ / public:
$root = dirname(dirname(__FILE__));
set_include_path($root.'/application' . PATH_SEPARATOR
.$root.'/library' . PATH_SEPARATOR
. get_include_path()
);
source
share