function google_appliance_theme in Google Search Appliance 8
Same name and namespace in other branches
- 6.2 google_appliance.module \google_appliance_theme()
- 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;
}