_statistics_link

5 statistics.module _statistics_link($path, $width = 35)
6 statistics.module _statistics_link($path, $width = 35)
7 statistics.module _statistics_link($path, $width = 35)
8 statistics.module _statistics_link($path, $width = 35)

It is possible to adjust the width of columns generated by the statistics module.

3 calls to _statistics_link()

File

modules/statistics.module, line 470
Logs access statistics for your site.

Code

function _statistics_link($path, $width = 35) {
  $title = drupal_get_path_alias($path);
  $title = truncate_utf8($title, $width, FALSE, TRUE);
  return l($title, $path);
}
Login or register to post comments