◆ __createContributeWhereCondition()
| ilLikeMetaDataSearch::__createContributeWhereCondition |
( |
| ) |
|
Definition at line 56 of file class.ilLikeMetaDataSearch.php.
61 foreach ($this->query_parser->getQuotedWords() as $word) {
66 #$where .= (" LIKE ('%".$word."%')"); 67 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
◆ __createDescriptionWhereCondition()
| ilLikeMetaDataSearch::__createDescriptionWhereCondition |
( |
| ) |
|
Definition at line 99 of file class.ilLikeMetaDataSearch.php.
101 $concat =
' description ';
104 foreach ($this->query_parser->getQuotedWords() as $word) {
109 #$where .= (" LIKE ('%".$word."%')"); 110 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
112 return $where .
') ';
◆ __createKeywordWhereCondition()
| ilLikeMetaDataSearch::__createKeywordWhereCondition |
( |
| ) |
|
Definition at line 40 of file class.ilLikeMetaDataSearch.php.
42 $concat =
' keyword ';
45 foreach ($this->query_parser->getQuotedWords() as $word) {
49 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
51 #$where .= (" LIKE ('%".$word."%')");
◆ __createTitleWhereCondition()
| ilLikeMetaDataSearch::__createTitleWhereCondition |
( |
| ) |
|
Definition at line 71 of file class.ilLikeMetaDataSearch.php.
79 $concat = $this->db->concat(
81 array(
'title',
'text'),
82 array(
'coverage',
'text'))
88 foreach ($this->query_parser->getQuotedWords() as $word) {
93 #$where .= (" LIKE ('%".$word."%')"); 94 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
The documentation for this class was generated from the following file: