◆ __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 100 of file class.ilLikeMetaDataSearch.php.
102 $concat =
' description ';
105 foreach ($this->query_parser->getQuotedWords() as $word) {
110 #$where .= (" LIKE ('%".$word."%')"); 111 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
113 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.
80 $concat = $this->db->concat(
82 array(
'title',
'text'),
83 array(
'coverage',
'text'))
89 foreach ($this->query_parser->getQuotedWords() as $word) {
94 #$where .= (" LIKE ('%".$word."%')"); 95 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
The documentation for this class was generated from the following file: