Formats an item for display, including both the item title and the link.
string $title: The text to link to a path; will be truncated to a maximum width of 35.
string $path: The path to link to; will default to '/'.
string An HTML string with $title linked to the $path.
function _statistics_format_item($title, $path) {
$path = $path ? $path : '/';
$output = $title ? "{$title}<br />" : '';
$output .= _statistics_link($path);
return $output;
}