You are here

function views_autocomplete_filters_handler_filter_search_api_fulltext::option_definition in Views Autocomplete Filters 7

Specify the options this filter uses.

Overrides SearchApiViewsHandlerFilterFulltext::option_definition

File

views/handlers/views_autocomplete_filters_handler_filter_search_api_fulltext.inc, line 17
Definition of views_autocomplete_filters_handler_filter_string.

Class

views_autocomplete_filters_handler_filter_search_api_fulltext
Extend the basic textfield filter handler with autocomplete.

Code

function option_definition() {
  $options = parent::option_definition();

  // Use helper function, avoid code duplicates.
  views_autocomplete_filters_filter_hander_option_definition($options);
  return $options;
}