ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ilLikeTestSearch Class Reference
+ Inheritance diagram for ilLikeTestSearch:
+ Collaboration diagram for ilLikeTestSearch:

Public Member Functions

 __createWhereCondition ()
 
- Public Member Functions inherited from ilTestSearch
__searchTestIntroduction ()
 
__searchTestTitle ()
 
__searchSurveyIntroduction ()
 
__searchSurveyTitle ()
 
performSearch ()
 
- Public Member Functions inherited from ilAbstractSearch
 __construct ($qp_obj)
 Constructor @access public. More...
 
 setFields ($a_fields)
 Set fields to search. More...
 
 getFields ()
 Get fields to search. More...
 
 setFilter ($a_filter)
 set object type to search in More...
 
 setIdFilter ($a_id_filter)
 Set id filter Filters search by given object id. More...
 
 getIdFilter ()
 Get Id filter. More...
 
 appendToFilter ($a_type)
 Append object type to filter. More...
 
 getFilter ()
 get object type to search in More...
 
 __createLocateString ()
 build locate string in case of AND search More...
 
 __prepareFound (&$row)
 
performSearch ()
 

Additional Inherited Members

- Data Fields inherited from ilAbstractSearch
 $db = null
 
 $query_parser = null
 
 $search_result = null
 
 $object_types
 

Detailed Description

Definition at line 37 of file class.ilLikeTestSearch.php.

Member Function Documentation

◆ __createWhereCondition()

ilLikeTestSearch::__createWhereCondition ( )

Definition at line 40 of file class.ilLikeTestSearch.php.

41 {
42 global $ilDB;
43
44 foreach($this->getFields() as $field)
45 {
46 $tmp_field[$field] = 'text';
47 }
48
49 $and = " WHERE ";
50 $counter = 0;
51 foreach($this->query_parser->getQuotedWords() as $word)
52 {
53 foreach($this->getFields() as $field)
54 {
55 if($counter++)
56 {
57 $and .= " OR ";
58 }
59 $and .= $ilDB->like($field,'text','%'.$word.'%');
60 }
61 }
62 return $and;
63 }
getFields()
Get fields to search.
$counter
global $ilDB

References $counter, $ilDB, and ilAbstractSearch\getFields().

+ Here is the call graph for this function:

The documentation for this class was generated from the following file: