コード例 #1
0
ファイル: Create.php プロジェクト: nidorx/Zend_Dao_Vo
    /**
     * Faz a validação do formulário de usergroup (usado pelo Admin)
     * 
     * @param Nidorx_Form $form
     * @param Array $data 
     */
    public function validateForm(Zend_Form $form, $data)
    {

        if ($form->isValid($data)) {

            $translator = new Nidorx_Translator();

            $username = $form->getElement('username')->getValue();
            if ($this->_daoUser->getByUsername($username)) {
                $form->getElement('username')->addError($translator->translate('error_username_in_use'));
                $form->addError($translator->translate('error_username_in_use'));
            }

            //Verificando se o email já está em uso
            $email = $form->getElement('email')->getValue();
            if ($this->_daoUser->getByEmail($email)) {
                $form->getElement('email')->addError($translator->translate('error_email_in_use'));
                $form->addError($translator->translate('error_email_in_use'));
            }
        };

        return!$form->isErrors();
    }
コード例 #2
0
ファイル: FormTest.php プロジェクト: vicfryzel/zf
 /**
  * @group ZF-5150
  */
 public function testIsValidShouldFailIfAddErrorHasBeenCalled()
 {
     $this->form->addError('Error');
     $this->assertFalse($this->form->isValid(array()));
 }
コード例 #3
0
ファイル: Record.php プロジェクト: niieani/nandu
	/**
	 * Set up an error handler proxying between Void_Doctrine_Record and Zend_Form.
	 * This method has to be executed after a validation has taken place.
	 *
	 * @param Void_Doctrine_Record $record A record we refer to
	 * @param string $column A column (field) name in this record
	 * @param Zend_Form $form A form we refer to
	 * @param string $field A name of form field
	 * @param array $mappings Key: an error type we expect to happen, value: an error message passed to form element when this error happens
	 */
	public function errorStackToForm($column, array $mappings, Zend_Form $form, $field = null) {
		// Check if error stack for this record mentions column we refer to
		if ($this->getErrorStack()->contains($column)) {
			// Get errors for this column
			foreach ($this->getErrorStack()->get($column) as $type) {
				// Check if error type found exists in mappings, if so use it; if no, pass an error as-is
				$error = (array_key_exists($type, $mappings) ? $mappings[$type] : $type);
				if ($field === null) {
					// Attach an error to the form
					$form->addError($error);
				} else {
					// Attach an error to the form element given
					$form->getElement($field)->addError($error);
				}
			}
		}
	}