本文整理汇总了PHP中Mage_Customer_Model_Customer::getStore方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Customer_Model_Customer::getStore方法的具体用法?PHP Mage_Customer_Model_Customer::getStore怎么用?PHP Mage_Customer_Model_Customer::getStore使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Customer_Model_Customer
的用法示例。
在下文中一共展示了Mage_Customer_Model_Customer::getStore方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setCustomerData
/**
* Set customer data.
*
* @param Mage_Customer_Model_Customer $customer
*/
public function setCustomerData(Mage_Customer_Model_Customer $customer)
{
$this->customer = $customer;
$this->setReviewCollection();
$website = $customer->getStore()->getWebsite();
if ($website && Mage::helper('ddg')->isSweetToothToGo($website)) {
$this->setRewardCustomer($customer);
}
foreach ($this->getMappingHash() as $key => $field) {
/**
* call user function based on the attribute mapped.
*/
$function = 'get';
$exploded = explode('_', $key);
foreach ($exploded as $one) {
$function .= ucfirst($one);
}
try {
$value = call_user_func(array('self', $function));
$this->customerData[$key] = $value;
} catch (Exception $e) {
Mage::logException($e);
}
}
}
示例2: _filterCustomer
/**
* @param Mage_Customer_Model_Customer $customer
*
* @return Bronto_Common_Model_Email_Template_Filter
*/
protected function _filterCustomer(Mage_Customer_Model_Customer $customer)
{
if (!in_array('customer', $this->_filteredObjects)) {
// Handle Defaults from settings
$customerName = trim($customer->getName()) == '' ? Mage::helper('bronto_common')->getDefaultGreeting('full', 'store', $this->getStoreId()) : $customer->getName();
$customerPrefix = trim($customer->getPrefix()) == '' ? Mage::helper('bronto_common')->getDefaultGreeting('prefix', 'store', $this->getStoreId()) : $customer->getPrefix();
$customerFirstName = trim($customer->getFirstname()) == '' ? Mage::helper('bronto_common')->getDefaultGreeting('firstname', 'store', $this->getStoreId()) : $customer->getFirstname();
$customerLastName = trim($customer->getLastname()) == '' ? Mage::helper('bronto_common')->getDefaultGreeting('lastname', 'store', $this->getStoreId()) : $customer->getLastname();
$this->setField('customerName', $customerName);
$this->setField('firstName', $customerFirstName);
$this->setField('prefix', $customerPrefix);
$this->setField('lastName', $customerLastName);
$this->setField('customerEmail', $customer->getEmail());
$this->setField('customerPassword', $customer->getPassword());
if ($store = $customer->getStore()) {
$this->setField('confirmationLink', $store->getUrl('customer/account/confirm', array('_query' => array('id' => $customer->getId(), 'key' => $customer->getConfirmation()))));
if (Mage::helper('bronto_common')->isVersionMatch(Mage::getVersionInfo(), 1, array(array('>=', '6')))) {
$this->setField('passwordResetLink', $store->getUrl('customer/account/resetpassword', array('_query' => array('id' => $customer->getId(), 'token' => $customer->getRpToken()))));
}
} else {
$this->setField('confirmationLink', Mage::getUrl('customer/account/confirm', array('_query' => array('id' => $customer->getId(), 'key' => $customer->getConfirmation()))));
if (Mage::helper('bronto_common')->isVersionMatch(Mage::getVersionInfo(), 1, array(array('>=', '6')))) {
$this->setField('passwordResetLink', Mage::getUrl('customer/account/resetpassword', array('_query' => array('id' => $customer->getId(), 'token' => $customer->getRpToken()))));
}
}
$this->_filteredObjects[] = 'customer';
}
return $this;
}
示例3: getCustomerDocCode
public function getCustomerDocCode(Mage_Customer_Model_Customer $customer)
{
$prefix = trim($this->getConfig('customer_prefix', $customer->getStore()), self::DOC_CODE_SEPARATOR);
$prefix = (empty($prefix) ? 'C' : $prefix) . self::DOC_CODE_SEPARATOR;
if ($customer->getId()) {
return $prefix . $customer->getId();
} else {
return null;
}
}
示例4: _registerSetBasicData
/**
* Set customers basic data like name, gender etc.
*
* @param Mage_Customer_Model_Customer $magentoCustomer
* @param ShopgateCustomer $shopgateCustomer
*
* @return Mage_Customer_Model_Customer $magentoCustomer
*/
protected function _registerSetBasicData($magentoCustomer, $shopgateCustomer)
{
$magentoCustomer->setConfirmation(null);
$magentoCustomer->setFirstname($shopgateCustomer->getFirstName());
$magentoCustomer->setLastname($shopgateCustomer->getLastName());
$magentoCustomer->setGender($this->getMagentoCustomerGender($shopgateCustomer->getGender()));
$magentoCustomer->setDob($shopgateCustomer->getBirthday());
$magentoCustomer->setForceConfirmed(true);
$magentoCustomer->save();
$magentoCustomer->sendNewAccountEmail('registered', '', $magentoCustomer->getStore()->getId());
return $magentoCustomer;
}