Inheritance diagram for ilLikeLMContentSearch:
Collaboration diagram for ilLikeLMContentSearch:Public Member Functions | |
| ilLikeLMContentSearch (&$qp_obj) | |
| Constructor public. | |
| __createWhereCondition () | |
Definition at line 37 of file class.ilLikeLMContentSearch.php.
| 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().
{
parent::ilLMContentSearch($qp_obj);
}
Here is the call graph for this function:
1.7.1