function search_log_theme in Search Log 6
Same name and namespace in other branches
- 7 search_log.module \search_log_theme()
Implementation of hook_theme().
File
- ./
search_log.module, line 67 - Replaces default report of top search phrases.
Code
function search_log_theme() {
return array(
'search_log_block' => array(
'arguments' => array(
'items' => NULL,
),
),
'search_log_report' => array(
'file' => 'search_log.admin.inc',
'arguments' => array(
'table' => NULL,
'pager' => NULL,
'summary' => NULL,
'filters' => NULL,
),
),
'search_log_summary' => array(
'file' => 'search_log.admin.inc',
'arguments' => array(
'total' => 0,
'unique' => 0,
'failed' => 0,
),
),
);
}