ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilLikeObjectSearch Class Reference
+ Inheritance diagram for ilLikeObjectSearch:
+ Collaboration diagram for ilLikeObjectSearch:

Public Member Functions

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

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.ilLikeObjectSearch.php.

Member Function Documentation

ilLikeObjectSearch::__createWhereCondition ( )

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

References $ilDB.

{
global $ilDB;
/*
$concat = " CONCAT(";
$concat .= 'title,description';
$concat .= ") ";
*/
$concat = $ilDB->concat(
array(
array('title','text'),
array('description','text')));
$where = "WHERE (";
$counter = 0;
foreach($this->query_parser->getQuotedWords() as $word)
{
if($counter++)
{
$where .= "OR";
}
$where .= $ilDB->like($concat,'text','%'.$word.'%');
#$where .= $concat;
#$where .= ("LIKE ('%".$word."%') ");
}
$where .= ') ';
return $where;
}
ilLikeObjectSearch::ilLikeObjectSearch ( $qp_obj)

Constructor public.

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

References ilObjectSearch\ilObjectSearch().

{
}

+ Here is the call graph for this function:


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