You are here

function views_plugin_style_autocomplete::theme_functions in Search Autocomplete 7.3

Implements view_style_plugin::theme_functions(). Returns an array of theme functions to use for the current style plugin

Return value

array

Overrides views_plugin::theme_functions

1 call to views_plugin_style_autocomplete::theme_functions()
views_plugin_style_autocomplete::render in views/plugins/views_plugin_style_autocomplete.inc
Implements view_style_plugin::render()

File

views/plugins/views_plugin_style_autocomplete.inc, line 30
Implements views_plugin_style for search_autocomplete

Class

views_plugin_style_autocomplete
Implements views_plugin_style

Code

function theme_functions() {
  $options = $this->options;
  $hook = 'views_search_autocomplete_style';
  return views_theme_functions($hook, $this->view, $this->display);
}