search_theme
- Versions
- 6 – 7
search_theme()
Implement hook_theme().
Code
modules/search/search.module, line 117
<?php
function search_theme() {
return array(
'search_block_form' => array(
'render element' => 'form',
'template' => 'search-block-form',
),
'search_result' => array(
'variables' => array('result' => NULL, 'type' => NULL),
'file' => 'search.pages.inc',
'template' => 'search-result',
),
'search_results' => array(
'variables' => array('results' => NULL, 'type' => NULL),
'file' => 'search.pages.inc',
'template' => 'search-results',
),
'search_results_listing' => array(
'variables' => array('title' => NULL, 'content' => NULL),
),
);
}
?>Login or register to post comments 