You are here

function google_appliance_theme in Google Search Appliance 8

Same name and namespace in other branches
  1. 6.2 google_appliance.module \google_appliance_theme()
  2. 7 theme/google_appliance.theme.inc \google_appliance_theme()

Implements hook_theme().

File

./google_appliance.module, line 46
Google Appliance module file.

Code

function google_appliance_theme() {
  $theme = [];
  $theme['google_appliance_search_results'] = [
    'variables' => [
      'results' => NULL,
      'form' => '',
    ],
  ];
  return $theme;
}