19 declare(strict_types=1);
35 $concat =
' keyword ';
38 foreach ($this->query_parser->getQuotedWords() as $word) {
42 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
44 #$where .= (" LIKE ('%".$word."%')"); 54 foreach ($this->query_parser->getQuotedWords() as $word) {
59 #$where .= (" LIKE ('%".$word."%')"); 60 $where .= $this->db->like($concat,
'text',
'%' . $word .
'%');
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 .
'%');
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 .
') ';