function piwik_stats_permission in Piwik Statistic Integration 7
Same name and namespace in other branches
- 7.2 piwik_stats.module \piwik_stats_permission()
Implements hook_permission().
File
- ./
piwik_stats.module, line 31 - Integrates piwik statistics per node.
Code
function piwik_stats_permission() {
return array(
'view piwik statistic tab' => array(
'title' => t('View Piwik statistic tab'),
'description' => t('Access Piwik statistics tab on node.'),
),
);
}