function _statistics_format_item
Same name and namespace in other branches
- 7.x drupal-7.x/modules/statistics/statistics.module \_statistics_format_item()
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
Archivo
- drupal-6.x/
modules/ statistics/ statistics.module, line 306 - Logs access statistics for your site.
Código
function _statistics_format_item($title, $path) {
$path = ($path ? $path : '/');
$output = ($title ? "$title<br />" : '');
$output .= _statistics_link($path);
return $output;
}