You are here

function multiselect_menu in Multiselect 7

Implements hook_menu().

File

./multiselect.module, line 30
Allows users to select multiple items in an easier way than the normal node-reference widget.

Code

function multiselect_menu() {
  $items['admin/config/content/multiselect'] = array(
    'title' => t('Multiselect'),
    'description' => t('Configure how multiselect fields are displayed to content editors.'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'multiselect_settings',
    ),
    'file' => 'multiselect.admin.inc',
    'access arguments' => array(
      'administer site configuration',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}