_statistics_format_item

5 statistics.module _statistics_format_item($title, $path)
6 statistics.module _statistics_format_item($title, $path)
7 statistics.module _statistics_format_item($title, $path)
8 statistics.module _statistics_format_item($title, $path)

3 calls to _statistics_format_item()

File

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;
}
Login or register to post comments