function xhprof_sortable_columns in XHProf 6
Same name and namespace in other branches
- 7 xhprof.inc \xhprof_sortable_columns()
4 calls to xhprof_sortable_columns()
- theme_xhprof_run_table in ./xhprof.module
- Theme function to display list of XHProf function calls.
- xhprof_init_metrics in ./xhprof.inc
- Initialize the metrics we'll display based on the information
in the raw data.
- xhprof_print_flat_data in ./xhprof.inc
- Print non-hierarchical (flat-view) of profiler data.
- xhprof_symbol_report in ./xhprof.inc
- Generates a report for a single function/symbol.
File
- ./xhprof.inc, line 18
Code
function xhprof_sortable_columns() {
return array(
"fn" => 1,
"ct" => 1,
"wt" => 1,
"excl_wt" => 1,
"ut" => 1,
"excl_ut" => 1,
"st" => 1,
"excl_st" => 1,
"mu" => 1,
"excl_mu" => 1,
"pmu" => 1,
"excl_pmu" => 1,
"cpu" => 1,
"excl_cpu" => 1,
"samples" => 1,
"excl_samples" => 1,
);
}