function search_theme in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/search/search.module \search_theme()
Implements hook_theme().
File
- core/
modules/ search/ search.module, line 99 - Enables site-wide keyword searching.
Code
function search_theme() {
return array(
'search_result' => array(
'variables' => array(
'result' => NULL,
'plugin_id' => NULL,
),
'file' => 'search.pages.inc',
),
);
}