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


PHP Mage::Registry方法代码示例

本文整理汇总了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;
     }
 }
开发者ID:votanlean,项目名称:Magento-Pruebas,代码行数:36,代码来源:Data.php

示例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;
 }
开发者ID:phirunson,项目名称:magento-google-trusted-stores,代码行数:11,代码来源:Template.php


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