You are here

function autocomplete_widgets_menu in Autocomplete Widgets for Text and Number Fields 6

Same name and namespace in other branches
  1. 7 autocomplete_widgets.module \autocomplete_widgets_menu()

Implementation of hook_menu().

File

./autocomplete_widgets.module, line 11
Provides autocomplete widgets for CCK Text and Number fields.

Code

function autocomplete_widgets_menu() {
  $items = array();
  $items['autocomplete_widgets'] = array(
    'title' => 'Autocomplete Widgets',
    'page callback' => 'autocomplete_widgets_json',
    'access callback' => 'autocomplete_widgets_access',
    'access arguments' => array(
      1,
      2,
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}