◆ __createContributeWhereCondition()
ilLikeMetaDataSearch::__createContributeWhereCondition |
( |
| ) |
|
Definition at line 70 of file class.ilLikeMetaDataSearch.php.
References $ilDB.
77 foreach($this->query_parser->getQuotedWords() as $word)
84 #$where .= (" LIKE ('%".$word."%')"); 85 $where .= $ilDB->like($concat,
'text',
'%'.$word.
'%');
◆ __createDescriptionWhereCondition()
ilLikeMetaDataSearch::__createDescriptionWhereCondition |
( |
| ) |
|
Definition at line 120 of file class.ilLikeMetaDataSearch.php.
References $ilDB.
124 $concat =
' description ';
127 foreach($this->query_parser->getQuotedWords() as $word)
134 #$where .= (" LIKE ('%".$word."%')"); 135 $where .= $ilDB->like($concat,
'text',
'%'.$word.
'%');
◆ __createKeywordWhereCondition()
ilLikeMetaDataSearch::__createKeywordWhereCondition |
( |
| ) |
|
Definition at line 50 of file class.ilLikeMetaDataSearch.php.
References $ilDB.
54 $concat =
' keyword ';
57 foreach($this->query_parser->getQuotedWords() as $word)
63 $where .= $ilDB->like($concat,
'text',
'%'.$word.
'%');
65 #$where .= (" LIKE ('%".$word."%')");
◆ __createTitleWhereCondition()
ilLikeMetaDataSearch::__createTitleWhereCondition |
( |
| ) |
|
Definition at line 89 of file class.ilLikeMetaDataSearch.php.
References $ilDB.
99 $concat = $ilDB->concat(
101 array(
'title',
'text'),
102 array(
'coverage',
'text')));
107 foreach($this->query_parser->getQuotedWords() as $word)
114 #$where .= (" LIKE ('%".$word."%')"); 115 $where .= $ilDB->like($concat,
'text',
'%'.$word.
'%');
◆ ilLikeMetaDataSearch()
ilLikeMetaDataSearch::ilLikeMetaDataSearch |
( |
& |
$qp_obj | ) |
|
The documentation for this class was generated from the following file: