addValidatorPrefixPath example


    public function addNamespace($namespaces)
    {
        if (!is_array($namespaces)) {
            $namespaces = array($namespaces);
        }

        foreach ($namespaces as $namespace) {
            $prefix = $namespace;
            $path = str_replace('_', DIRECTORY_SEPARATOR, $prefix);
            $this->addFilterPrefixPath($prefix$path);
            $this->addValidatorPrefixPath($prefix$path);
        }

        return $this;
    }

    /** * Add prefix path for all elements * * @param string $prefix * @param string $path * @return Zend_Filter_Input */
Home | Imprint | This part of the site doesn't use cookies.