silverstripe-framework/search/filters/FulltextFilter.php
Ingo Schommer 75f2cf2654 (merged from branches/roa. use "svn log -c <changeset> -g <module-svn-path>" for detailed commit message)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@60232 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-08-09 06:40:50 +00:00

36 lines
785 B
PHP

<?php
/**
* @package sapphire
* @subpackage search
*/
/**
* Filters by full-text matching on the given field.
*
* Full-text indexes are only available with MyISAM tables. The following column types are
* supported:
* - Char
* - Varchar
* - Text
*
* To enable full-text matching on fields, you also need to add an index to the
* database table, using the {$indexes} hash in your DataObject subclass:
*
* <code>
* static $indexes = array(
* 'SearchFields' => 'fulltext(Name, Title, Description)'
* );
* </code>
*
* @package sapphire
* @subpackage search
*/
class FulltextFilter extends SearchFilter {
public function apply(SQLQuery $query) {
$query->where("MATCH ({$this->getName()} AGAINST ('{$this->getValue()}')");
return $query;
}
}
?>