You are here

function search_log_theme in Search Log 7

Same name and namespace in other branches
  1. 6 search_log.module \search_log_theme()

Implements hook_theme().

File

./search_log.module, line 61
Replaces default report of top search phrases.

Code

function search_log_theme() {
  return array(
    'search_log_report' => array(
      'file' => 'search_log.admin.inc',
      'variables' => array(
        'summary' => NULL,
        'filters' => NULL,
        'table' => NULL,
        'pager' => NULL,
      ),
    ),
    'search_log_summary' => array(
      'file' => 'search_log.admin.inc',
      'variables' => array(
        'total' => 0,
        'unique' => 0,
        'failed' => 0,
      ),
    ),
  );
}