Same name and namespace in other branches
  1. 4.7.x modules/statistics.module \_statistics_link()
  2. 5.x modules/statistics/statistics.module \_statistics_link()
  3. 7.x modules/statistics/statistics.module \_statistics_link()

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

3 calls to _statistics_link()
statistics_node_tracker in modules/statistics/statistics.pages.inc
@file User page callbacks for the statistics module.
statistics_top_referrers in modules/statistics/statistics.admin.inc
Menu callback; presents the "referrer" page.
_statistics_format_item in modules/statistics/statistics.module

File

modules/statistics/statistics.module, line 300
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);
}