function crazyegg_permission in Crazy Egg Integration 7
Same name and namespace in other branches
- 8 crazyegg.module \crazyegg_permission()
Implements hook_permission().
File
- ./
crazyegg.module, line 13 - The official Crazy Egg Plugin for Drupal. The easiest, free way to add your Crazy Egg tracking script to your Drupal site. See https://www.crazyegg.com for details.
Code
function crazyegg_permission() {
return array(
'administer crazy egg' => array(
'title' => t('Administer Crazy Egg'),
'description' => t('Administer account settings and visibility of Crazy Egg on your site.'),
),
);
}