function statistics_menu

Implements hook_menu().

File

drupal/core/modules/statistics/statistics.module, line 78
Logs and displays content statistics for a site.

Code

function statistics_menu() {
  $items['admin/config/system/statistics'] = array(
    'title' => 'Statistics',
    'description' => 'Control details about what and how your site logs content statistics.',
    'route_name' => 'statistics_settings',
    'access arguments' => array(
      'administer statistics',
    ),
    'weight' => -15,
  );
  return $items;
}