當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。