function xhprof_param_defaults in XHProf 6
Same name and namespace in other branches
- 7 xhprof.module \xhprof_param_defaults()
Get default URL parameters for XHProf.
1 call to xhprof_param_defaults()
- xhprof_display_run in ./
xhprof.module - Display XHProf run report.
File
- ./
xhprof.module, line 274
Code
function xhprof_param_defaults() {
// param name, its type, and default value
return array(
'run' => '',
'wts' => '',
'symbol' => '',
'sort' => 'wt',
// wall time
'run1' => '',
'run2' => '',
'source' => 'xhprof',
'all' => 0,
);
}