You are here

function xhprof_theme in XHProf 6

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

Implementation of hook_theme()

File

./xhprof.module, line 60

Code

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