_statistics_format_item
- Versions
- 4.6
_statistics_format_item($title,$link)- 4.7 – 7
_statistics_format_item($title, $path)
Code
modules/statistics/statistics.module, line 304
<?php
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 