_statistics_format_item

Versions
4.6
_statistics_format_item($title, $link)
4.7 – 7
_statistics_format_item($title, $path)

Code

modules/statistics.module, line 474

<?php
function _statistics_format_item($title, $link) {
  $link = ($link ? $link : '/');
  $output  = ($title ? "$title<br />" : '');
  $output .= l($link, $link);
  return $output;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.