ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilLikeObjectSearch Class Reference
+ Inheritance diagram for ilLikeObjectSearch:
+ Collaboration diagram for ilLikeObjectSearch:

Public Member Functions

 __createWhereCondition ()
 
- Public Member Functions inherited from ilObjectSearch
 __construct (&$qp_obj)
 Constructor @access public. More...
 
 performSearch ()
 
 __createInStatement ()
 
 setCreationDateFilterDate (ilDate $day)
 Set creation date filter. More...
 
 setCreationDateFilterOperator ($a_operator)
 
 getCreationDateFilterDate ()
 
 getCreationDateFilterOperator ()
 
- 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 ilObjectSearch
const CDATE_OPERATOR_BEFORE = 1
 
const CDATE_OPERATOR_AFTER = 2
 
const CDATE_OPERATOR_ON = 3
 
- Data Fields inherited from ilAbstractSearch
 $db = null
 
 $query_parser = null
 
 $search_result = null
 
 $object_types
 

Detailed Description

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

Member Function Documentation

◆ __createWhereCondition()

ilLikeObjectSearch::__createWhereCondition ( )

Definition at line 39 of file class.ilLikeObjectSearch.php.

40 {
41 global $ilDB;
42
43 /*
44 $concat = " CONCAT(";
45 $concat .= 'title,description';
46 $concat .= ") ";
47 */
48
49 $concat = $ilDB->concat(
50 array(
51 array('title','text'),
52 array('description','text'))
53 );
54
55
56 $where = "WHERE (";
57 $counter = 0;
58 foreach ($this->query_parser->getQuotedWords() as $word) {
59 if ($counter++) {
60 $where .= "OR";
61 }
62
63 $where .= $ilDB->like($concat, 'text', '%' . $word . '%');
64
65 #$where .= $concat;
66 #$where .= ("LIKE ('%".$word."%') ");
67 }
68 $where .= ') ';
69 return $where;
70 }
$counter
global $ilDB

References $counter, and $ilDB.


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