name == '')) { $this->setError(JText::_( 'BNR_CLIENT_NAME' )); return false; } // check for valid client contact if (trim($this->contact == '')) { $this->setError(JText::_( 'BNR_CONTACT' )); return false; } // check for valid client email jimport( 'joomla.mail.helper' ); if (!JMailHelper::isEmailAddress( $this->email )) { $this->setError(JText::_( 'BNR_VALID_EMAIL' )); return false; } return true; } }