You are here

function isbn_menu in ISBN Field 6

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

Implementation of hook_menu().

File

./isbn.module, line 20
Defines ISBN field types.

Code

function isbn_menu() {
  $items['isbn/validate'] = array(
    'title' => 'ISBN Validate',
    'page callback' => 'isbn_validate_ajax',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  return $items;
}