本文整理汇总了PHP中Mage_Customer_Model_Customer::validate方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Customer_Model_Customer::validate方法的具体用法?PHP Mage_Customer_Model_Customer::validate怎么用?PHP Mage_Customer_Model_Customer::validate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Customer_Model_Customer
的用法示例。
在下文中一共展示了Mage_Customer_Model_Customer::validate方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: validate
/**
* Validate customer attribute values.
* For existing customer password + confirmation will be validated only when password is set (i.e. its change is requested)
*
* @return bool
*/
public function validate()
{
if (Mage::helper('onestepcheckout')->enabledOnestepcheckout()) {
return true;
}
return parent::validate();
}
示例2: validate
public function validate()
{
$errors = parent::validate();
if (!$this->_helper->isEnabled()) {
return $errors;
}
if (!is_array($errors)) {
$errors = array();
}
$this->_clearRedefinedValidationsErrors($errors);
$password = $this->getPassword();
$minPasswordLength = $this->_helper->getPasswordMinLength();
if (strlen($password) && !Zend_Validate::is($password, 'StringLength', array($minPasswordLength))) {
$errors[] = Mage::helper('customer')->__('The minimum password length is %s', $minPasswordLength);
}
if ($this->_isPasswordWasAlreadyInUse()) {
$errors[] = $this->_helper->__('Password was already used by you some times ago. Use new password.');
}
if (empty($errors)) {
return true;
}
return $errors;
}
示例3: _validateCustomer
/**
* Do validation of customer and its address using validate methods in models
*
* @param Mage_Customer_Model_Customer $customer
* @param Mage_Customer_Model_Address|null $address
* @throws Magento_Validator_Exception
*/
protected function _validateCustomer($customer, $address = null)
{
$errors = array();
if ($address) {
$addressErrors = $address->validate();
if (is_array($addressErrors)) {
$errors = array_merge($errors, $addressErrors);
}
}
$customerErrors = $customer->validate();
if (is_array($customerErrors)) {
$errors = array_merge($errors, $customerErrors);
}
if (count($errors) > 0) {
throw new Magento_Validator_Exception(array($errors));
}
}
示例4: validate
public function validate()
{
$errors = parent::validate();
}