You are here

function search_views_handlers in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 modules/search.views.inc \search_views_handlers()

Implementation of hook_views_handlers() to register all of the basic handlers views uses.

Related topics

File

modules/search.views.inc, line 133
Provide views data and handlers for search.module

Code

function search_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'views') . '/modules/search',
    ),
    'handlers' => array(
      'views_handler_field_search_score' => array(
        'parent' => 'views_handler_field_numeric',
      ),
      'views_handler_sort_search_score' => array(
        'parent' => 'views_handler_sort',
      ),
      'views_handler_filter_search' => array(
        'parent' => 'views_handler_filter',
      ),
    ),
  );
}