當前位置: 首頁>>代碼示例>>PHP>>正文


PHP FlexicontentFields::getFilteredSearch方法代碼示例

本文整理匯總了PHP中FlexicontentFields::getFilteredSearch方法的典型用法代碼示例。如果您正苦於以下問題:PHP FlexicontentFields::getFilteredSearch方法的具體用法?PHP FlexicontentFields::getFilteredSearch怎麽用?PHP FlexicontentFields::getFilteredSearch使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在FlexicontentFields的用法示例。


在下文中一共展示了FlexicontentFields::getFilteredSearch方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getFilteredSearch

 public function getFilteredSearch(&$field, $value)
 {
     if (!in_array($field->field_type, self::$field_types)) {
         return;
     }
     $field->parameters->set('display_filter_as_s', 1);
     // Only supports a basic filter of single text search input
     return FlexicontentFields::getFilteredSearch($field, $value, $return_sql = true);
 }
開發者ID:noxidsoft,項目名稱:flexicontent-cck,代碼行數:9,代碼來源:parentfield.php

示例2: getFilteredSearch

 function getFilteredSearch(&$filter, $value, $return_sql = true)
 {
     if (!in_array($filter->field_type, self::$field_types)) {
         return;
     }
     $filter->isindexed = true;
     return FlexicontentFields::getFilteredSearch($filter, $value, $return_sql);
 }
開發者ID:khetsothea,項目名稱:flexicontent-cck,代碼行數:8,代碼來源:radioimage.php

示例3: getFilteredSearch

 function getFilteredSearch(&$filter, $value, $return_sql = true)
 {
     if (!in_array($filter->field_type, self::$field_types)) {
         return;
     }
     $date_source = $filter->parameters->get('date_source', 0);
     if ($date_source) {
         JFactory::getApplication()->enqueueMessage("Field: '" . $filter->label . "' is using start/end publication dates and cannot be used as filter in search view", 'notice');
         return;
     }
     return FlexicontentFields::getFilteredSearch($filter, $value, $return_sql);
 }
開發者ID:nettdotkomm,項目名稱:flexicontent-cck,代碼行數:12,代碼來源:date.php

示例4: getFilteredSearch

 function getFilteredSearch(&$filter, $value, $return_sql = true)
 {
     if ($filter->iscore != 1) {
         return;
     }
     if ($filter->field_type == 'maintext' || $filter->field_type == 'title') {
         $filter->parameters->set('display_filter_as_s', 1);
         // Only supports a basic filter of single text search input
     }
     $filter->isindexed = in_array($filter->field_type, array('type', 'state', 'tags', 'categories', 'created', 'createdby', 'modified', 'modifiedby'));
     return FlexicontentFields::getFilteredSearch($filter, $value, $return_sql);
 }
開發者ID:nettdotkomm,項目名稱:flexicontent-cck,代碼行數:12,代碼來源:core.php

示例5: getFilteredSearch

	function getFilteredSearch(&$field, $value)
	{
		if ( !in_array($field->field_type, self::$field_types) ) return;
		
		return FlexicontentFields::getFilteredSearch($field, $value, $return_sql=true);
	}
開發者ID:kosmosby,項目名稱:medicine-prof,代碼行數:6,代碼來源:textselect.php


注:本文中的FlexicontentFields::getFilteredSearch方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。