You are here

function select_or_other_menu in Select (or other) 7.2

Same name and namespace in other branches
  1. 6.2 select_or_other.module \select_or_other_menu()
  2. 6 select_or_other.module \select_or_other_menu()

Implements hook_menu().

File

./select_or_other.test_form.inc, line 11
The Select (or other) test form.

Code

function select_or_other_menu() {
  $items = array();
  $items['select-or-other-test-form'] = array(
    'title' => 'select_or_other test',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'select_or_other_test_form',
    ),
    'access arguments' => array(
      'access administration pages',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}