You are here

function eloqua_menu in Eloqua 6

Same name and namespace in other branches
  1. 7.2 eloqua.module \eloqua_menu()
  2. 7 eloqua.module \eloqua_menu()

Implementation of hook_menu().

File

./eloqua.module, line 43

Code

function eloqua_menu() {
  $items = array();
  $items['admin/settings/eloqua'] = array(
    'title' => 'Eloqua',
    'description' => 'Create and edit Eloqua settings.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'eloqua_admin_form',
    ),
    'access arguments' => array(
      'access administration pages',
    ),
    'type' => MENU_NORMAL_ITEM,
    'file' => 'eloqua.admin.inc',
  );
  return $items;
}