| 1 |
<?php |
<?php |
| 2 |
// $Id: views_fastsearch.module,v 1.2.2.46 2008/01/16 12:36:33 douggreen Exp $ |
// $Id: views_fastsearch.module,v 1.2.2.47 2008/03/04 18:28:12 douggreen Exp $ |
| 3 |
|
|
| 4 |
/** @file |
/** @file |
| 5 |
* Add a views filter that allows nodes to be filtered quickly |
* Add a views filter that allows nodes to be filtered quickly |
| 56 |
'filters' => array( |
'filters' => array( |
| 57 |
'word' => array( |
'word' => array( |
| 58 |
'name' => t('Search: Fast Index'), |
'name' => t('Search: Fast Index'), |
| 59 |
'operator' => array('=' => 'AND', 'AND+' => 'AND (empty all)', 'OR' => 'OR'), |
'operator' => array('=' => t('AND'), 'AND+' => t('AND (empty all)'), 'OR' => t('OR')), |
| 60 |
'handler' => 'views_fastsearch_views_handler_search_index', |
'handler' => 'views_fastsearch_views_handler_search_index', |
| 61 |
'option' => 'string', |
'option' => 'string', |
| 62 |
'help' => t('replacement search filter that is faster than the default search.'), |
'help' => t('replacement search filter that is faster than the default search.'), |