You are here

function devel_xhprof_link_show in Devel 6

Displays page execution time at the bottom of the page.

1 call to devel_xhprof_link_show()
devel_shutdown_real in ./devel.module
See devel_shutdown() which registers this function as a shutdown function. Displays developer information in the footer.

File

./devel.module, line 1794

Code

function devel_xhprof_link_show() {
  if (variable_get('devel_xhprof_enabled', FALSE)) {
    return devel_xhprof_link($GLOBALS['devel_run_id']);
  }
}