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

Public Member Functions

 __createWhereCondition ()
 
- Public Member Functions inherited from ilUserSearch
 enableActiveCheck ($a_enabled)
 search only active accounts More...
 
 enableInactiveCheck ($a_enabled)
 search only inactive accounts More...
 
performSearch ()
 
- Public Member Functions inherited from ilAbstractSearch
 __construct ($qp_obj)
 Constructor 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.ilLikeUserSearch.php.

Member Function Documentation

◆ __createWhereCondition()

ilLikeUserSearch::__createWhereCondition ( )

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

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

40  {
41  global $ilDB;
42 
43  $fields = $this->getFields();
44  $field = $fields[0].' ';
45 
46  $and = " WHERE ( ";
47 
48  $counter = 0;
49  foreach($this->query_parser->getQuotedWords() as $word)
50  {
51  if($counter++)
52  {
53  $and .= " OR ";
54  }
55 
56  #$and .= $field;
57 
58  if(strpos($word,'^') === 0)
59  {
60  $and .= $ilDB->like($field,'text',substr($word,1).'%');
61  #$and .= ("LIKE ('".substr($word,1)."%')");
62  }
63  else
64  {
65  $and .= $ilDB->like($field,'text','%'.$word.'%');
66  #$and .= ("LIKE ('%".$word."%')");
67  }
68  }
69 
70  return $and.") ";
71  }
getFields()
Get fields to search.
$counter
global $ilDB
+ Here is the call graph for this function:

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