◆ __createContributeWhereCondition()
ilLikeMetaDataSearch::__createContributeWhereCondition |
( |
| ) |
|
Definition at line 49 of file class.ilLikeMetaDataSearch.php.
54 foreach ($this->query_parser->getQuotedWords() as $word) {
59 #$where .= (" LIKE ('%".$word."%')"); 60 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
◆ __createDescriptionWhereCondition()
ilLikeMetaDataSearch::__createDescriptionWhereCondition |
( |
| ) |
|
Definition at line 92 of file class.ilLikeMetaDataSearch.php.
94 $concat =
' description ';
97 foreach ($this->query_parser->getQuotedWords() as $word) {
102 #$where .= (" LIKE ('%".$word."%')"); 103 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
105 return $where .
') ';
◆ __createKeywordWhereCondition()
ilLikeMetaDataSearch::__createKeywordWhereCondition |
( |
| ) |
|
Definition at line 33 of file class.ilLikeMetaDataSearch.php.
35 $concat =
' keyword ';
38 foreach ($this->query_parser->getQuotedWords() as $word) {
42 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
44 #$where .= (" LIKE ('%".$word."%')");
◆ __createTitleWhereCondition()
ilLikeMetaDataSearch::__createTitleWhereCondition |
( |
| ) |
|
Definition at line 64 of file class.ilLikeMetaDataSearch.php.
72 $concat = $this->db->concat(
74 array(
'title',
'text'),
75 array(
'coverage',
'text'))
81 foreach ($this->query_parser->getQuotedWords() as $word) {
86 #$where .= (" LIKE ('%".$word."%')"); 87 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
The documentation for this class was generated from the following file: