ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
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
35
include_once
'Services/Search/classes/class.ilAbstractSearch.php'
;
36
37
class
ilTestSearch
extends
ilAbstractSearch
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
}
55
return
$this->search_result
;
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
}
73
return
$this->search_result
;
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
}
91
return
$this->search_result
;
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
}
109
return
$this->search_result
;
110
}
111
112
113
public
function
performSearch
()
114
{
115
$this->
__searchTestTitle
();
116
$this->
__searchTestIntroduction
();
117
$this->
__searchSurveyTitle
();
118
$this->
__searchSurveyIntroduction
();
119
120
return
$this->search_result
;
121
}
122
}
ilAbstractSearch\getFields
getFields()
Get fields to search.
Definition:
class.ilAbstractSearch.php:72
ilAbstractSearch
Definition:
class.ilAbstractSearch.php:16
ilTestSearch\__searchTestTitle
& __searchTestTitle()
Definition:
class.ilTestSearch.php:57
ilAbstractSearch\__createLocateString
__createLocateString()
build locate string in case of AND search
Definition:
class.ilAbstractSearch.php:141
ilAbstractSearch\setFields
setFields($a_fields)
Set fields to search.
Definition:
class.ilAbstractSearch.php:62
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
$query
$query
Definition:
proxy_ylocal.php:13
ilTestSearch
Definition:
class.ilTestSearch.php:37
array
Create styles array
The data for the language used.
Definition:
40duplicateStyle.php:19
ilTestSearch\performSearch
performSearch()
Definition:
class.ilTestSearch.php:113
ilTestSearch\__searchSurveyIntroduction
& __searchSurveyIntroduction()
Definition:
class.ilTestSearch.php:75
ilTestSearch\__searchSurveyTitle
& __searchSurveyTitle()
Definition:
class.ilTestSearch.php:93
ilDBConstants\FETCHMODE_OBJECT
const FETCHMODE_OBJECT
Definition:
class.ilDBConstants.php:13
$row
$row
Definition:
10autofilter-selection-1.php:74
ilTestSearch\__searchTestIntroduction
& __searchTestIntroduction()
Definition:
class.ilTestSearch.php:39
ilAbstractSearch\$search_result
$search_result
Definition:
class.ilAbstractSearch.php:30
Services
Search
classes
class.ilTestSearch.php
Generated on Tue Jan 28 2025 19:01:40 for ILIAS by
1.8.13 (using
Doxyfile
)