ILIAS  Release_3_10_x_branch Revision 61812
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilLikeLMContentSearch Class Reference
+ Inheritance diagram for ilLikeLMContentSearch:
+ Collaboration diagram for ilLikeLMContentSearch:

Public Member Functions

 ilLikeLMContentSearch (&$qp_obj)
 Constructor public.
 __createWhereCondition ()
- Public Member Functions inherited from ilLMContentSearch
 ilLMContentSearch (&$query_parser)
 Constructor public.
performSearch ()
 __createInStatement ()
 __createAndCondition ()
- 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
 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.ilLikeLMContentSearch.php.

Member Function Documentation

ilLikeLMContentSearch::__createWhereCondition ( )

Definition at line 49 of file class.ilLikeLMContentSearch.php.

{
$concat = " content ";
$and = " WHERE ( ";
$counter = 0;
foreach($this->query_parser->getQuotedWords() as $word)
{
if($counter++)
{
$and .= " OR";
}
$and .= $concat;
$and .= ("LIKE ('%".$word."%')");
}
return $and.") ";
}
ilLikeLMContentSearch::ilLikeLMContentSearch ( $qp_obj)

Constructor public.

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

References ilLMContentSearch\ilLMContentSearch().

+ Here is the call graph for this function:


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