You are here

function select_or_other_menu in Select (or other) 6

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

Implementation of hook_menu().

File

./select_or_other.module, line 294
The Select (or other) module.

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;
}