You are here

function og_massadd_menu in Organic Groups Mass Add 6

Same name and namespace in other branches
  1. 7 og_massadd.module \og_massadd_menu()

Implement hook_menu

File

./og_massadd.module, line 23
The og_massadd module file

Code

function og_massadd_menu() {
  $items['admin/settings/og_massadd'] = array(
    'title' => 'og_massadd',
    'description' => 'Configure og_massadd',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'og_massadd_admin_settings',
    ),
    'access callback' => 'user_access',
    'access arguments' => array(
      'administer site configuration',
    ),
    'type' => MENU_NORMAL_ITEM,
    'file' => 'og_massadd.admin.inc',
  );
  return $items;
}