当前位置: 首页>>代码示例>>PHP>>正文


PHP Mage_Customer_Model_Customer::getGender方法代码示例

本文整理汇总了PHP中Mage_Customer_Model_Customer::getGender方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Customer_Model_Customer::getGender方法的具体用法?PHP Mage_Customer_Model_Customer::getGender怎么用?PHP Mage_Customer_Model_Customer::getGender使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mage_Customer_Model_Customer的用法示例。


在下文中一共展示了Mage_Customer_Model_Customer::getGender方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: createFromCustomer

 public static function createFromCustomer(Mage_Customer_Model_Customer $customer)
 {
     /** @var Mage_Log_Model_Customer $logCustomer */
     $logCustomer = Mage::getModel('log/customer')->loadByCustomer($customer->getId());
     switch ($customer->getGender()) {
         case '1':
             $gender = 1;
             break;
         case '2':
             $gender = 2;
             break;
         default:
             $gender = 0;
     }
     $aCustomer = new self();
     $aCustomer->email = $customer->getEmail();
     $aCustomer->type = 'e';
     $aCustomer->gender = $gender;
     $aCustomer->id = $customer->getId();
     $aCustomer->first_name = $customer->getFirstname();
     $aCustomer->last_name = $customer->getLastname();
     if (($birthday = $customer->getDob()) !== null) {
         $aCustomer->birthday = Aplazame_Sdk_Serializer_Date::fromDateTime(new DateTime($birthday));
     }
     if (($document_id = $customer->getTaxvat()) !== null) {
         $aCustomer->document_id = $document_id;
     }
     $aCustomer->date_joined = Aplazame_Sdk_Serializer_Date::fromDateTime(new DateTime('@' . $customer->getCreatedAtTimestamp()));
     if (($lastLogin = $logCustomer->getLoginAtTimestamp()) != null) {
         $aCustomer->last_login = Aplazame_Sdk_Serializer_Date::fromDateTime(new DateTime('@' . $lastLogin));
     }
     return $aCustomer;
 }
开发者ID:aplazame,项目名称:magento,代码行数:33,代码来源:Customer.php

示例2: setGroupNameAndGenderNameForCustomer

 /**
  * Sets API attributes on a customer object
  *
  * @param Mage_Customer_Model_Customer $customer Customer to work with
  *
  * @return void
  */
 public function setGroupNameAndGenderNameForCustomer($customer)
 {
     if ($this->_customerGroups == null) {
         $this->_customerGroups = array();
         /* @var Mage_Customer_Model_Resource_Group $customerGroups */
         $customerGroups = Mage::getModel('customer/group')->getCollection();
         foreach ($customerGroups as $group) {
             $groupId = $group['customer_group_id'];
             $groupCode = $group['customer_group_code'];
             $this->_customerGroups[$groupId] = $groupCode;
         }
     }
     if (array_key_exists($customer->getGroupId(), $this->_customerGroups)) {
         $customer->setGroupName($this->_customerGroups[$customer->getGroupId()]);
     }
     $customer->setGenderName(Mage::getResourceSingleton('customer/customer')->getAttribute('gender')->getSource()->getOptionText($customer->getGender()));
 }
开发者ID:RxOuchy,项目名称:LDS_Client_Solutions,代码行数:24,代码来源:Data.php

示例3: _getCustomerGenderLabel

 /**
  * @param Mage_Customer_Model_Customer $customer
  *
  * @return string
  */
 protected function _getCustomerGenderLabel(Mage_Customer_Model_Customer $customer)
 {
     return Mage::getResourceSingleton('customer/customer')->getAttribute('gender')->getSource()->getOptionText($customer->getGender());
 }
开发者ID:protechhelp,项目名称:gamamba,代码行数:9,代码来源:CustomerSummary.php

示例4: _createGender

 /**
  * @param Mage_Customer_Model_Customer $customer
  * @return string|null
  */
 protected function _createGender(Mage_Customer_Model_Customer $customer)
 {
     $gender = $customer->getGender();
     if ($gender == 1) {
         return 'MALE';
     } else {
         if ($gender == 2) {
             return 'FEMALE';
         }
     }
     return null;
 }
开发者ID:ridhoq,项目名称:mxpi-twitter,代码行数:16,代码来源:Customer.php

示例5: getShopgateCustomerGender

 /**
  * get gender according to shopgate needs
  *
  * @param Mage_Customer_Model_Customer|Mage_Customer_Model_Address $data
  * @return string
  */
 public function getShopgateCustomerGender($data)
 {
     $options = Mage::getResourceModel('customer/customer')->getAttribute('gender')->getSource()->getAllOptions(false);
     $gender = null;
     foreach ($options as $option) {
         if ($option['value'] == $data->getGender()) {
             $gender = $option['label'];
         }
     }
     switch ($gender) {
         case 'Male':
             return ShopgateCustomer::MALE;
             break;
         case 'Female':
             return ShopgateCustomer::FEMALE;
             break;
         default:
             return '';
     }
 }
开发者ID:buttasg,项目名称:cowgirlk,代码行数:26,代码来源:Customer.php

示例6: validateCustomerAttributes

 /**
  * Validate customer attributes
  *
  * @param Mage_Customer_Model_Customer $customer
  * @return bool
  */
 public function validateCustomerAttributes(Mage_Customer_Model_Customer $customer)
 {
     $errors = array();
     $customerHelper = Mage::helper('customer');
     if (!Zend_Validate::is(trim($customer->getFirstname()), 'NotEmpty')) {
         $errors[] = $customerHelper->__('The first name cannot be empty.');
     }
     /*
             if (!Zend_Validate::is( trim($customer->getLastname()) , 'NotEmpty')) {
                 $errors[] = $customerHelper->__('The last name cannot be empty.');
             }
     */
     if (!Zend_Validate::is($customer->getEmail(), 'EmailAddress')) {
         $errors[] = $customerHelper->__('Invalid email address "%s".', $customer->getEmail());
     }
     $password = $customer->getPassword();
     if (!$customer->getId() && !Zend_Validate::is($password, 'NotEmpty')) {
         $errors[] = $customerHelper->__('The password cannot be empty.');
     }
     if (strlen($password) && !Zend_Validate::is($password, 'StringLength', array(6))) {
         $errors[] = $customerHelper->__('The minimum password length is %s', 6);
     }
     $confirmation = $customer->getConfirmation();
     if ($password != $confirmation) {
         $errors[] = $customerHelper->__('Please make sure your passwords match.');
     }
     $entityType = Mage::getSingleton('eav/config')->getEntityType('customer');
     $attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'dob');
     if ($attribute->getIsRequired() && '' == trim($customer->getDob())) {
         $errors[] = $customerHelper->__('The Date of Birth is required.');
     }
     $attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'taxvat');
     if ($attribute->getIsRequired() && '' == trim($customer->getTaxvat())) {
         $errors[] = $customerHelper->__('The TAX/VAT number is required.');
     }
     $attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'gender');
     if ($attribute->getIsRequired() && '' == trim($customer->getGender())) {
         $errors[] = $customerHelper->__('Gender is required.');
     }
     return empty($errors) ? true : $errors;
 }
开发者ID:xiaoguizhidao,项目名称:autotech_design,代码行数:47,代码来源:Page.php


注:本文中的Mage_Customer_Model_Customer::getGender方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。