| 7 statistics.module | statistics_permission() |
| 8 statistics.module | statistics_permission() |
Implements hook_permission().
File
- modules/
statistics/ statistics.module, line 100 - Logs access statistics for your 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'),
),
);
}
Login or register to post comments