◆ __createContributeWhereCondition()
ilFulltextMetaDataSearch::__createContributeWhereCondition |
( |
| ) |
|
Definition at line 76 of file class.ilFulltextMetaDataSearch.php.
References $query.
79 if($this->db->isMysql4_0OrHigher())
81 $query .=
" WHERE MATCH(entity) AGAINST('";
82 foreach($this->query_parser->getQuotedWords(
true) as $word)
87 $query .=
"' IN BOOLEAN MODE) ";
92 $query .=
" WHERE MATCH (entity) AGAINST(' ";
93 foreach($this->query_parser->getQuotedWords(
true) as $word)
◆ __createDescriptionWhereCondition()
ilFulltextMetaDataSearch::__createDescriptionWhereCondition |
( |
| ) |
|
Definition at line 128 of file class.ilFulltextMetaDataSearch.php.
References $query.
131 if($this->db->isMysql4_0OrHigher())
133 $query .=
" WHERE MATCH(description) AGAINST('";
134 foreach($this->query_parser->getQuotedWords(
true) as $word)
139 $query .=
"' IN BOOLEAN MODE) ";
144 $query .=
" WHERE MATCH (description) AGAINST(' ";
145 foreach($this->query_parser->getQuotedWords(
true) as $word)
◆ __createKeywordWhereCondition()
ilFulltextMetaDataSearch::__createKeywordWhereCondition |
( |
| ) |
|
Definition at line 50 of file class.ilFulltextMetaDataSearch.php.
References $query.
53 if($this->db->isMysql4_0OrHigher())
55 $query .=
" WHERE MATCH(keyword) AGAINST('";
56 foreach($this->query_parser->getQuotedWords(
true) as $word)
61 $query .=
"' IN BOOLEAN MODE) ";
66 $query .=
" WHERE MATCH (keyword) AGAINST(' ";
67 foreach($this->query_parser->getQuotedWords(
true) as $word)
◆ __createTitleWhereCondition()
ilFulltextMetaDataSearch::__createTitleWhereCondition |
( |
| ) |
|
Definition at line 102 of file class.ilFulltextMetaDataSearch.php.
References $query.
105 if($this->db->isMysql4_0OrHigher())
107 $query .=
" WHERE MATCH(title,coverage) AGAINST('";
108 foreach($this->query_parser->getQuotedWords(
true) as $word)
113 $query .=
"' IN BOOLEAN MODE) ";
118 $query .=
" WHERE MATCH (title,coverage) AGAINST(' ";
119 foreach($this->query_parser->getQuotedWords(
true) as $word)
◆ ilFulltextMetaDataSearch()
ilFulltextMetaDataSearch::ilFulltextMetaDataSearch |
( |
& |
$qp_obj | ) |
|
The documentation for this class was generated from the following file: