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


PHP oxUBase::getViewId方法代码示例

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


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

示例1: getViewId

 /**
  * Returns prefix ID used by template engine.
  *
  * @return string    $this->_sViewId
  */
 public function getViewId()
 {
     if (!isset($this->_sViewId)) {
         $this->_sViewId = parent::getViewId() . '|' . oxConfig::getParameter('oxcid');
     }
     return $this->_sViewId;
 }
开发者ID:JulianaSchuster,项目名称:oxid-frontend,代码行数:12,代码来源:content.php

示例2: getViewId

 /**
  * Returns prefix ID used by template engine.
  *
  * @return string    $this->_sViewId
  */
 public function getViewId()
 {
     if (!isset($this->_sViewId)) {
         $this->_sViewId = parent::getViewId() . '|' . oxRegistry::getConfig()->getRequestParameter('oxcid');
     }
     return $this->_sViewId;
 }
开发者ID:Crease29,项目名称:oxideshop_ce,代码行数:12,代码来源:ContentController.php

示例3: getViewId

 /**
  * Returns prefix ID used by template engine.
  *
  * @return  string  $this->_sViewID view id
  */
 public function getViewId()
 {
     return oxUBase::getViewId();
 }
开发者ID:ioanok,项目名称:symfoxid,代码行数:9,代码来源:review.php

示例4: getViewId

 /**
  * Returns prefix ID used by template engine.
  *
  * @return  string  $this->_sViewID view id
  */
 public function getViewId()
 {
     if (isset($this->_sViewId)) {
         return $this->_sViewId;
     }
     $sViewId = parent::getViewId() . '|' . $this->getConfig()->getRequestParameter('anid') . '|';
     return $this->_sViewId = $sViewId;
 }
开发者ID:ioanok,项目名称:symfoxid,代码行数:13,代码来源:details.php

示例5: getViewId

 /**
  * Generates (if not generated yet) and returns view ID (for
  * template engine caching).
  *
  * @return string   $this->_sViewId view id
  */
 public function getViewId()
 {
     if (!isset($this->_sViewId)) {
         $sCatId = oxRegistry::getConfig()->getRequestParameter('cnid');
         $iActPage = $this->getActPage();
         $iArtPerPage = oxRegistry::getSession()->getVariable('_artperpage');
         $sListDisplayType = $this->_getListDisplayType();
         $sParentViewId = parent::getViewId();
         // shorten it
         $this->_sViewId = md5($sParentViewId . '|' . $sCatId . '|' . $iActPage . '|' . $iArtPerPage . '|' . $sListDisplayType);
     }
     return $this->_sViewId;
 }
开发者ID:ioanok,项目名称:symfoxid,代码行数:19,代码来源:alist.php

示例6: getViewId

 /**
  * Generates (if not generated yet) and returns view ID (for
  * template engine caching).
  *
  * @return string   $this->_sViewId view id
  */
 public function getViewId()
 {
     if (!isset($this->_sViewId)) {
         $sCatId = oxConfig::getParameter('cnid');
         $iActPage = $this->getActPage();
         $iArtPerPage = oxSession::getVar('_artperpage');
         $sListDisplayType = oxSession::getVar('ldtype');
         $sParentViewId = parent::getViewId();
         // shorten it
         $this->_sViewId = md5($sParentViewId . '|' . $sCatId . '|' . $iActPage . '|' . $iArtPerPage . '|' . $sListDisplayType);
     }
     return $this->_sViewId;
 }
开发者ID:JulianaSchuster,项目名称:oxid-frontend,代码行数:19,代码来源:alist.php


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