function _statistics_format_item

7.x statistics.module _statistics_format_item($title, $path)
6.x statistics.module _statistics_format_item($title, $path)
3 calls to _statistics_format_item()
statistics_recent_hits in drupal-6.x/modules/statistics/statistics.admin.inc
Menu callback; presents the "recent hits" page.
statistics_top_pages in drupal-6.x/modules/statistics/statistics.admin.inc
Menu callback; presents the "top pages" page.
statistics_user_tracker in drupal-6.x/modules/statistics/statistics.pages.inc

File

drupal-6.x/modules/statistics/statistics.module, line 306
Logs access statistics for your site.

Code

function _statistics_format_item($title, $path) {
  $path = ($path ? $path : '/');
  $output = ($title ? "$title<br />" : '');
  $output .= _statistics_link($path);
  return $output;
}