You are here

function isbn_menu in ISBN Field 6.0

Same name and namespace in other branches
  1. 6 isbn.module \isbn_menu()

Implementation of hook_menu().

File

./isbn.module, line 12
Maintains a consistant relationship between nodes and ISBNs.

Code

function isbn_menu() {
  $items = array();
  $items['isbn'] = array(
    'title' => 'ISBN Conversion',
    'type' => MENU_CALLBACK,
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'isbn_form',
    ),
    'access arguments' => array(
      'access content',
    ),
    'weight' => 7,
  );
  return $items;
}