You are here

function xhprof_theme in XHProf 7

Same name and namespace in other branches
  1. 6 xhprof.module \xhprof_theme()

Implementation of hook_theme()

File

./xhprof.module, line 61

Code

function xhprof_theme() {
  return array(
    'xhprof_overall_summary' => array(
      'variables' => array(
        'totals' => NULL,
        'possible_metrics' => NULL,
        'metrics' => NULL,
        'display_calls' => NULL,
      ),
    ),
    'xhprof_run_table' => array(
      'variables' => array(
        'stats' => NULL,
        'totals' => NULL,
        'url_params' => NULL,
        'title' => NULL,
        'flat_data' => NULL,
        'limit' => NULL,
      ),
    ),
  );
}