ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilTestSearch.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
35include_once 'Services/Search/classes/class.ilAbstractSearch.php';
36
38{
39 public function &__searchTestIntroduction()
40 {
41 $this->setFields(array('introduction'));
42
43 $where = $this->__createWhereCondition(implode(',', $this->getFields()));
44 $locate = $this->__createLocateString();
45
46 $query = "SELECT obj_fi " .
47 $locate .
48 "FROM tst_tests " .
49 $where;
50
51 $res = $this->db->query($query);
52 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
53 $this->search_result->addEntry($row->obj_fi, 'tst', $this->__prepareFound($row));
54 }
56 }
57 public function &__searchTestTitle()
58 {
59 $this->setFields(array('title','description'));
60
61 $where = $this->__createWhereCondition(implode(',', $this->getFields()));
62 $locate = $this->__createLocateString();
63
64 $query = "SELECT obj_fi " .
65 $locate .
66 "FROM qpl_questions " .
67 $where;
68
69 $res = $this->db->query($query);
70 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
71 $this->search_result->addEntry($row->obj_fi, 'qpl', $this->__prepareFound($row));
72 }
74 }
75 public function &__searchSurveyIntroduction()
76 {
77 $this->setFields(array('introduction'));
78
79 $where = $this->__createWhereCondition(implode(',', $this->getFields()));
80 $locate = $this->__createLocateString();
81
82 $query = "SELECT obj_fi " .
83 $locate .
84 "FROM svy_svy " .
85 $where;
86
87 $res = $this->db->query($query);
88 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
89 $this->search_result->addEntry($row->obj_fi, 'svy', $this->__prepareFound($row));
90 }
92 }
93 public function &__searchSurveyTitle()
94 {
95 $this->setFields(array('title','description'));
96
97 $where = $this->__createWhereCondition(implode(',', $this->getFields()));
98 $locate = $this->__createLocateString();
99
100 $query = "SELECT obj_fi " .
101 $locate .
102 "FROM svy_question " .
103 $where;
104
105 $res = $this->db->query($query);
106 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
107 $this->search_result->addEntry($row->obj_fi, 'spl', $this->__prepareFound($row));
108 }
110 }
111
112
113 public function performSearch()
114 {
115 $this->__searchTestTitle();
117 $this->__searchSurveyTitle();
119
121 }
122}
An exception for terminatinating execution or to throw for unit testing.
__createLocateString()
build locate string in case of AND search
setFields($a_fields)
Set fields to search.
getFields()
Get fields to search.
$query
foreach($_POST as $key=> $value) $res