You are here

function hotjar_menu in Hotjar 7

Same name and namespace in other branches
  1. 6 hotjar.module \hotjar_menu()

Implements hook_menu().

File

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

Code

function hotjar_menu() {
  $items['admin/config/system/hotjar'] = array(
    'title' => 'Hotjar',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'hotjar_admin_settings_form',
    ),
    'access arguments' => array(
      'administer hotjar',
    ),
    'type' => MENU_NORMAL_ITEM,
    'file' => 'hotjar.admin.inc',
  );
  return $items;
}