"'%value%' has not only alphabetic characters", self::STRING_EMPTY => "'%value%' is an empty string" ); /** * Sets default option values for this instance * * @param boolean $allowWhiteSpace * @return void */ public function __construct($allowWhiteSpace = false) { $this->allowWhiteSpace = (boolean) $allowWhiteSpace; } /** * Defined by Zend_Validate_Interface * * Returns true if and only if $value contains only alphabetic characters * * @param string $value * @return boolean */ public function isValid($value) { $valueString = (string) $value; $this->_setValue($valueString); if ('' === $valueString) { $this->_error(self::STRING_EMPTY); return false; } if (null === self::$_filter) { /** * @see Zend_Filter_Alpha */ require_once 'Zend/Filter/Alpha.php'; self::$_filter = new Zend_Filter_Alpha(); } self::$_filter->allowWhiteSpace = $this->allowWhiteSpace; if ($valueString !== self::$_filter->filter($valueString)) { $this->_error(self::NOT_ALPHA); return false; } return true; } }