function crazyegg_menu in Crazy Egg Integration 6
Same name and namespace in other branches
- 7 crazyegg.module \crazyegg_menu()
Implements hook_menu().
File
- ./
crazyegg.module, line 15
Code
function crazyegg_menu() {
$items['admin/settings/crazyegg'] = array(
'title' => 'Crazy Egg',
'description' => 'Configure Crazy Egg heat maps on your website.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'crazyegg_admin_settings_form',
),
'access arguments' => array(
'administer crazy egg',
),
'type' => MENU_NORMAL_ITEM,
'file' => 'includes/admin.inc',
);
return $items;
}