devel_xhprof_link

  1. drupal
    1. 6 devel.module function
    2. 7 devel.module function
Drupal 7 devel_xhprof_link($run_id, $type = 'link')

2 calls to devel_xhprof_link()

File

sites/all/modules/devel/devel.module, line 1110

Code

function devel_xhprof_link($run_id, $type = 'link') {
  // @todo: render results from within Drupal.
  $xhprof_url = variable_get('devel_xhprof_url', '');
  $namespace = variable_get('site_name', ''); // namespace for your application
  if ($xhprof_url) {
    $url  = $xhprof_url . "/index.php?run=$run_id&source=$namespace";
    return $type == 'url' ? $url : t('<a href="@xhprof">XHProf output</a>. ', array('@xhprof' => $url));
  }
}