function statistics_permission

Implements hook_permission().

File

drupal/modules/statistics/statistics.module, line 100
Logs and displays access statistics for a site.

Code

function statistics_permission() {
  return array(
    'administer statistics' => array(
      'title' => t('Administer statistics'),
    ),
    'access statistics' => array(
      'title' => t('View content access statistics'),
    ),
    'view post access counter' => array(
      'title' => t('View content hits'),
    ),
  );
}