The class takes the HTML markup of a page, exctracts the content and writes
it to the database (search index). It also provides a method to query the
seach index, returning the matching entries.
Usage:
Search::indexPage($objPage->row());
$result = Search::searchFor('keyword');
while ($result->next())
{
echo $result->url;
}