You are here

function hotjar_permission in Hotjar 7

Implements hook_permission().

File

./hotjar.module, line 34
Drupal Module: Hotjar.

Code

function hotjar_permission() {
  return array(
    'administer hotjar' => array(
      'title' => t('Administer Hotjar'),
      'description' => t('Perform maintenance tasks for Hotjar.'),
    ),
  );
}