You are here

views_search_snippet.views.inc in Views search snippet 8

Same filename and directory in other branches
  1. 2.x views_search_snippet.views.inc
  2. 1.x views_search_snippet.views.inc

File

views_search_snippet.views.inc
View source
<?php

/*
 *Describe data tables and fields (for field snippet) to Views.
 */
function views_search_snippet_views_data() {
  $data['node_search_index']['snippet'] = array(
    'title' => t('Snippet'),
    'help' => t('A snippet from the content with search keywords highlighted. This will not be used if the search filter is not also present.'),
    'field' => array(
      'id' => 'views_search_snippet',
      'no group by' => TRUE,
    ),
  );
  $data['node_search_index']['keys'] = array(
    'title' => t('Search Keywords'),
    'help' => t('The keywords to search for.'),
  );
  return $data;
}

Functions