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


PHP JModelList::getStoreId方法代码示例

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


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

示例1: getStoreId

 protected function getStoreId($id = '')
 {
     $id .= ':' . $this->getState('filter.search');
     $id .= ':' . $this->getState('filter.location');
     $id .= ':' . $this->getState('filter.e_type');
     return parent::getStoreId($id);
 }
开发者ID:codigoaberto,项目名称:SEBLOD,代码行数:7,代码来源:versions.php

示例2: getStoreId

 /**
  * Method to get a store id based on model configuration state.
  *
  * @param string $id a prefix for the store id.
  * @return string a store id.
  */
 protected function getStoreId($id = '')
 {
     foreach ($this->filter as $name => $type) {
         $id .= sprintf(':%s', JoomDOCView::getStateName($name));
     }
     return parent::getStoreId($id);
 }
开发者ID:abdullah929,项目名称:bulletin,代码行数:13,代码来源:modellist.php

示例3: getStoreID

 /**
  * Method to get a store id based on model configuration state.
  *
  * This is necessary because the model is used by the component and
  * different modules that might need different sets of data or different
  * ordering requirements.
  *
  * @param   string  $id    A prefix for the store id.
  *
  * @return  string  A store id.
  */
 protected function getStoreID($id = '')
 {
     $id .= ':' . $this->getState('filter.search');
     $id .= ':' . $this->getState('filter.category_id');
     $id .= ':' . $this->getState('filter.author_id');
     return parent::getStoreId($id);
 }
开发者ID:joshjim27,项目名称:jobsglobal,代码行数:18,代码来源:templates.php

示例4: getStoreId

 /**
  * Filters
  */
 protected function getStoreId($id = '')
 {
     $id .= ':' . $this->getState('filter.search');
     $id .= ':' . $this->getState('filter.state');
     $id .= ':' . $this->getState('filter.language');
     return parent::getStoreId($id);
 }
开发者ID:CloudHotelier,项目名称:com_jkit,代码行数:10,代码来源:tags.php

示例5: getStoreId

 protected function getStoreId($id = '')
 {
     // Compile the store id.
     $id .= ':' . $this->getState('category.id');
     $id .= ':' . $this->getState('filter.published');
     return parent::getStoreId($id);
 }
开发者ID:chaudhary4k4,项目名称:modernstore,代码行数:7,代码来源:categories.php

示例6: getStoreId

 /**
  * Method to get a store id based on model configuration state.
  *
  * This is necessary because the model is used by the component and
  * different modules that might need different sets of data or different
  * ordering requirements.
  *
  * @param	string		$id	A prefix for the store id.
  * @return	string		A store id.
  * @since	1.6
  */
 protected function getStoreId($id = '')
 {
     // Compile the store id.
     $id .= ':' . $this->getState('filter.search');
     $id .= ':' . $this->getState('filter.state');
     return parent::getStoreId($id);
 }
开发者ID:ranrolls,项目名称:ras-full-portal,代码行数:18,代码来源:fbs.php

示例7: getStoreId

 protected function getStoreId($id = '')
 {
     $id .= ':' . $this->getState('list.access');
     $id .= ':' . $this->getState('list.language');
     $id .= ':' . $this->getState('list.category');
     $id .= ':' . $this->getState('list.searchword');
     return parent::getStoreId($id);
 }
开发者ID:ranrolls,项目名称:ras-full-portal,代码行数:8,代码来源:searchlistings.php

示例8: getStoreId

 /**
  * Method to get a store id based on model configuration state.
  *
  * This is necessary because the model is used by the component and
  * different modules that might need different sets of data or different
  * ordering requirements.
  *
  * @param   string $id A prefix for the store id.
  *
  * @return  string      A store id.
  * @since   1.6
  */
 protected function getStoreId($id = '')
 {
     // Compile the store id.
     $id .= ':' . $this->getState($this->context . '.project_id');
     $id .= ':' . $this->getState('list.ordering');
     $id .= ':' . $this->getState('list.direction');
     return parent::getStoreId($id);
 }
开发者ID:phpsource,项目名称:CrowdFunding,代码行数:20,代码来源:funders.php

示例9: getStoreId

 /**
  * Метод для получения store id, которое основывается на состоянии модели.
  *
  * @param   string  $id  Идентификационная строка для генерации store id.
  *
  * @return  string  Store id.
  */
 protected function getStoreId($id = '')
 {
     // Компилируем store id.
     $id .= ':' . $this->getState('filter.search');
     $id .= ':' . $this->getState('filter.state');
     $id .= ':' . $this->getState('filter.category_id');
     return parent::getStoreId($id);
 }
开发者ID:thebeuving,项目名称:joomla-25-component-example,代码行数:15,代码来源:helloworlds.php

示例10: getStoreId

 /**
  * Method to get a store id based on model configuration state.
  *
  * This is necessary because the model is used by the component and
  * different modules that might need different sets of data or different
  * ordering requirements.
  *
  * @param	string		$id	A prefix for the store id.
  * @return	string		A store id.
  * @since	1.6
  */
 protected function getStoreId($id = '')
 {
     // Compile the store id.
     $id .= ':' . $this->getState('filter.extension_number');
     $id .= ':' . $this->getState('filter.published');
     $id .= ':' . $this->getState('filter.extension_name');
     $id .= ':' . $this->getState('filter.id');
     return parent::getStoreId($id);
 }
开发者ID:gokuale,项目名称:vel,代码行数:20,代码来源:velignores.php

示例11: getStoreId

 /**
  * Method to get a store id based on model configuration state.
  *
  * This is necessary because the model is used by the component and
  * different modules that might need different sets of data or different
  * ordering requirements.
  *
  * @param	string		$id	A prefix for the store id.
  *
  * @return	string		A store id.
  * @since	1.6
  */
 protected function getStoreId($id = '')
 {
     // Compile the store id.
     $id .= ':' . $this->getState('filter.title');
     $id .= ':' . $this->getState('filter.artist');
     $id .= ':' . $this->getState('filter.category_id');
     $id .= ':' . $this->getState('filter.search');
     return parent::getStoreId($id);
 }
开发者ID:TFToto,项目名称:playjoom-builds,代码行数:21,代码来源:albums.php

示例12: getStoreId

 /**
  * Method to get a store id based on model configuration state.
  *
  * This is necessary because the model is used by the component and
  * different modules that might need different sets of data or different
  * ordering requirements.
  *
  * @param	string		$id	A prefix for the store id.
  *
  * @return	string		A store id.
  */
 protected function getStoreId($id = '')
 {
     // Compile the store id.
     $id .= ':' . $this->getState('filter.extension');
     $id .= ':' . $this->getState('filter.published');
     $id .= ':' . $this->getState('filter.access');
     $id .= ':' . $this->getState('filter.parentId');
     return parent::getStoreId($id);
 }
开发者ID:mined-gatech,项目名称:hubzero-cms,代码行数:20,代码来源:categories.php

示例13: getStoreId

 /**
  * Method to get a store id based on model configuration state.
  *
  * This is necessary because the model is used by the component and
  * different modules that might need different sets of data or different
  * ordering requirements.
  *
  * @param   string $id A prefix for the store id.
  *
  * @return  string      A store id.
  * @since   1.6
  */
 protected function getStoreId($id = '')
 {
     // Compile the store id.
     $id .= ':' . $this->getState('filter.search');
     $id .= ':' . $this->getState('filter.payment_service');
     $id .= ':' . $this->getState('filter.reward_state');
     $id .= ':' . $this->getState('filter.payment_status');
     return parent::getStoreId($id);
 }
开发者ID:phpsource,项目名称:CrowdFunding,代码行数:21,代码来源:transactions.php

示例14: getStoreId

 /**
  * Method to get a store id based on model configuration state.
  *
  * This is necessary because the model is used by the component and
  * different modules that might need different sets of data or different
  * ordering requirements.
  *
  * @param   string      $id A prefix for the store id.
  *
  * @return  string      A store id.
  * @since   1.6
  */
 protected function getStoreId($id = '')
 {
     // Compile the store id.
     $id .= ':' . $this->getState('filter.search');
     $id .= ':' . $this->getState('filter.published');
     $id .= ':' . $this->getState('filter.category_id');
     $id .= ':' . $this->getState('filter.tourismtype_id');
     return parent::getStoreId($id);
 }
开发者ID:jmangarret,项目名称:webtuagencia24,代码行数:21,代码来源:cpproductslist_old.php

示例15: getStoreId

	/**
	 * Method to get a store id based on model configuration state.
	 *
	 * This is necessary because the model is used by the component and
	 * different modules that might need different sets of data or different
	 * ordering requirements.
	 *
	 * @param	string		$id	A prefix for the store id.
	 * @return	string		A store id.
	 *
	 */
	protected function getStoreId($id = '')
	{
		// Compile the store id.
		$id .= ':' . $this->getState('filter_search');
		$id .= ':' . $this->getState('filter_published');
	//	$id .= ':' . $this->getState('filter_type');

		return parent::getStoreId($id);
	}
开发者ID:BillVGN,项目名称:PortalPRP,代码行数:20,代码来源:groups.php


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