ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilLikeMetaDataSearch.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
35 include_once 'Services/Search/classes/class.ilMetaDataSearch.php';
36 
38 {
39 
40  // Private
42  {
43  global $ilDB;
44 
45  $concat = ' keyword ';
46  $where = " WHERE (";
47  $counter = 0;
48  foreach ($this->query_parser->getQuotedWords() as $word) {
49  if ($counter++) {
50  $where .= "OR";
51  }
52  $where .= $ilDB->like($concat, 'text', '%' . $word . '%');
53  #$where .= $concat;
54  #$where .= (" LIKE ('%".$word."%')");
55  }
56  return $where . ') ';
57  }
58 
60  {
61  global $ilDB;
62 
63  $concat = ' entity ';
64  $where = " WHERE (";
65  $counter = 0;
66  foreach ($this->query_parser->getQuotedWords() as $word) {
67  if ($counter++) {
68  $where .= "OR";
69  }
70  #$where .= $concat;
71  #$where .= (" LIKE ('%".$word."%')");
72  $where .= $ilDB->like($concat, 'text', '%' . $word . '%');
73  }
74  return $where . ') ';
75  }
76  public function __createTitleWhereCondition()
77  {
78  global $ilDB;
79 
80  /*
81  $concat = ' CONCAT(title,coverage) '; // broken if coverage is null
82  // DONE: fix coverage search
83  $concat = ' title ';
84  */
85 
86  $concat = $ilDB->concat(
87  array(
88  array('title','text'),
89  array('coverage','text'))
90  );
91 
92 
93  $where = " WHERE (";
94  $counter = 0;
95  foreach ($this->query_parser->getQuotedWords() as $word) {
96  if ($counter++) {
97  $where .= "OR";
98  }
99  #$where .= $concat;
100  #$where .= (" LIKE ('%".$word."%')");
101  $where .= $ilDB->like($concat, 'text', '%' . $word . '%');
102  }
103  return $where . ' )';
104  }
105 
107  {
108  global $ilDB;
109 
110  $concat = ' description ';
111  $where = " WHERE (";
112  $counter = 0;
113  foreach ($this->query_parser->getQuotedWords() as $word) {
114  if ($counter++) {
115  $where .= "OR";
116  }
117  #$where .= $concat;
118  #$where .= (" LIKE ('%".$word."%')");
119  $where .= $ilDB->like($concat, 'text', '%' . $word . '%');
120  }
121  return $where . ') ';
122  }
123 }
$counter
Create styles array
The data for the language used.
global $ilDB