本文整理汇总了PHP中Mage::Registry方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage::Registry方法的具体用法?PHP Mage::Registry怎么用?PHP Mage::Registry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage
的用法示例。
在下文中一共展示了Mage::Registry方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: preFilter
public function preFilter($email, $params)
{
$subscriber = Mage::getSingleton('newsletter/subscriber')->loadByEmail($email);
$rq = Mage::app()->getRequest();
$fullaction = (string) $rq->getRequestedRouteName() . $rq->getRequestedControllerName() . $rq->getRequestedActionName();
if (Mage::Registry("aux_lastmethod")) {
if (isset($params['oldEmail'])) {
$subscriber->setOldEmail($params['oldEmail']);
}
return true;
}
if (!$subscriber->getData() or 'newslettersubscribernew' == $fullaction or 'customeraccountcreatepost' == $fullaction) {
if ('customeraccountcreatepost' == $fullaction) {
Mage::register("aux_lastmethod", $fullaction);
}
$customSession = Mage::getSingleton('customer/session')->getCustomer();
$subscriber = Mage::getSingleton('customer/customer')->setWebsiteId($customSession->getWebsiteId())->loadByEmail($email);
if (!$subscriber->getData()) {
$subscriber = $customSession;
if (!$subscriber->getEmail()) {
$subscriber->setStoreId(Mage::app()->getStore()->getStoreId())->setCustomerId(0)->setEmail($email);
}
} else {
$subscriber->setCustomerId($subscriber->getEntityId());
}
if (isset($params['oldEmail'])) {
$subscriber->setOldEmail($params['oldEmail']);
}
return $this->mailChimpFilter($subscriber, $params);
} else {
if (isset($params['oldEmail'])) {
$subscriber->setOldEmail($params['oldEmail']);
}
return true;
}
}
示例2: getItemGoogleShoppingId
/**
* Get the Item Google Shopping Account Id
* This is the current product.
*
* @return mixed
*/
public function getItemGoogleShoppingId()
{
$currentProduct = Mage::Registry('current_product');
return $currentProduct ? $currentProduct->getSku() : false;
}