You are here

function improved_multi_select_menu in Improved Multi Select 7.2

Same name and namespace in other branches
  1. 6 improved_multi_select.module \improved_multi_select_menu()
  2. 7 improved_multi_select.module \improved_multi_select_menu()

Implements hook_menu().

File

./improved_multi_select.module, line 58
Replace the default multi-select boxes with two pannel list and search.

Code

function improved_multi_select_menu() {
  $items = array();
  $items['admin/config/user-interface/ims'] = array(
    'title' => 'Improved Multi Select',
    'description' => 'Configure Improved Multi Select module.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'improved_multi_select_admin',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}