ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilFulltextAdvancedSearch.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 
24 include_once 'Services/Search/classes/class.ilAdvancedSearch.php';
25 
38 {
39  public function __createTaxonWhereCondition()
40  {
41  // IN BOOLEAN MODE
42  $query .= " WHERE MATCH(taxon) AGAINST('";
43  foreach ($this->query_parser->getQuotedWords(true) as $word) {
44  $query .= $word;
45  $query .= '* ';
46  }
47  $query .= "' IN BOOLEAN MODE) ";
48  return $query;
49  }
51  {
52  // IN BOOLEAN MODE
53  $query .= " WHERE MATCH(keyword) AGAINST('";
54  foreach ($this->query_parser->getQuotedWords(true) as $word) {
55  $query .= $word;
56  $query .= '* ';
57  }
58  $query .= "' IN BOOLEAN MODE) ";
59  return $query;
60  }
61 
63  {
64  // IN BOOLEAN MODE
65  $query .= " WHERE MATCH(meta_version) AGAINST('";
66  foreach ($this->query_parser->getQuotedWords(true) as $word) {
67  $query .= $word;
68  $query .= '* ';
69  }
70  $query .= "' IN BOOLEAN MODE) ";
71  return $query;
72  }
73 
74  public function __createEntityWhereCondition()
75  {
76  // IN BOOLEAN MODE
77  $query .= " WHERE MATCH(entity) AGAINST('";
78  foreach ($this->query_parser->getQuotedWords(true) as $word) {
79  $query .= $word;
80  $query .= '* ';
81  }
82  $query .= "' IN BOOLEAN MODE) ";
83  return $query;
84  }
85  public function __createCoverageAndCondition()
86  {
87  // IN BOOLEAN MODE
88  $query .= " AND MATCH(coverage) AGAINST('";
89  foreach ($this->query_parser->getQuotedWords(true) as $word) {
90  $query .= $word;
91  $query .= '* ';
92  }
93  $query .= "' IN BOOLEAN MODE) ";
94  return $query;
95  }
96 
98  {
99  // IN BOOLEAN MODE
100  $query .= " WHERE MATCH(title,description) AGAINST('";
101  foreach ($this->query_parser->getQuotedWords(true) as $word) {
102  $query .= $word;
103  $query .= '* ';
104  }
105  $query .= "' IN BOOLEAN MODE) ";
106  return $query;
107  }
108 }
$query