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


PHP Data::urlDecode方法代码示例

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


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

示例1: decodeTrackingHash

 /**
  * Decode url hash
  *
  * @param  string $hash
  * @return array
  */
 public function decodeTrackingHash($hash)
 {
     $hash = explode(':', $this->_coreData->urlDecode($hash));
     if (count($hash) === 3 && in_array($hash[0], $this->_allowedHashKeys)) {
         return array('key' => $hash[0], 'id' => (int) $hash[1], 'hash' => $hash[2]);
     }
     return array();
 }
开发者ID:aiesh,项目名称:magento2,代码行数:14,代码来源:Data.php

示例2: _loginPostRedirect

 /**
  * Define target URL and redirect customer after logging in
  *
  * @return void
  * @SuppressWarnings(PHPMD.CyclomaticComplexity)
  */
 protected function _loginPostRedirect()
 {
     $lastCustomerId = $this->_getSession()->getLastCustomerId();
     if (isset($lastCustomerId) && $this->_getSession()->isLoggedIn() && $lastCustomerId != $this->_getSession()->getId()) {
         $this->_getSession()->unsBeforeAuthUrl()->setLastCustomerId($this->_getSession()->getId());
     }
     if (!$this->_getSession()->getBeforeAuthUrl() || $this->_getSession()->getBeforeAuthUrl() == $this->_storeManager->getStore()->getBaseUrl()) {
         // Set default URL to redirect customer to
         $this->_getSession()->setBeforeAuthUrl($this->_customerHelperData->getAccountUrl());
         // Redirect customer to the last page visited after logging in
         if ($this->_getSession()->isLoggedIn()) {
             if (!$this->_scopeConfig->isSetFlag(\Magento\Customer\Helper\Data::XML_PATH_CUSTOMER_STARTUP_REDIRECT_TO_DASHBOARD, \Magento\Store\Model\ScopeInterface::SCOPE_STORE)) {
                 $referer = $this->getRequest()->getParam(\Magento\Customer\Helper\Data::REFERER_QUERY_PARAM_NAME);
                 if ($referer) {
                     $referer = $this->coreHelperData->urlDecode($referer);
                     if ($this->_url->isOwnOriginUrl()) {
                         $this->_getSession()->setBeforeAuthUrl($referer);
                     }
                 }
             } elseif ($this->_getSession()->getAfterAuthUrl()) {
                 $this->_getSession()->setBeforeAuthUrl($this->_getSession()->getAfterAuthUrl(true));
             }
         } else {
             $this->_getSession()->setBeforeAuthUrl($this->_customerHelperData->getLoginUrl());
         }
     } elseif ($this->_getSession()->getBeforeAuthUrl() == $this->_customerHelperData->getLogoutUrl()) {
         $this->_getSession()->setBeforeAuthUrl($this->_customerHelperData->getDashboardUrl());
     } else {
         if (!$this->_getSession()->getAfterAuthUrl()) {
             $this->_getSession()->setAfterAuthUrl($this->_getSession()->getBeforeAuthUrl());
         }
         if ($this->_getSession()->isLoggedIn()) {
             $this->_getSession()->setBeforeAuthUrl($this->_getSession()->getAfterAuthUrl(true));
         }
     }
     $this->getResponse()->setRedirect($this->_getSession()->getBeforeAuthUrl(true));
 }
开发者ID:aiesh,项目名称:magento2,代码行数:43,代码来源:LoginPost.php

示例3: decodeWidgetsFromQuery

 /**
  * Decode URL query param and return list of widgets
  *
  * @param string $queryParam Query param value to decode
  * @return string[] Array of widget types
  */
 public function decodeWidgetsFromQuery($queryParam)
 {
     $param = $this->_coreHelper->urlDecode($queryParam);
     return preg_split('/\\s*\\,\\s*/', $param, 0, PREG_SPLIT_NO_EMPTY);
 }
开发者ID:aiesh,项目名称:magento2,代码行数:11,代码来源:Config.php


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