You are here

function context_field_menu in Context Field 7

Implements hook_menu().

File

./context_field.module, line 33
Context Field

Code

function context_field_menu() {
  $items['context_field/autocomplete/context'] = array(
    'title' => 'Context Autocomplete',
    'access arguments' => array(
      'use context field editor',
    ),
    'page callback' => 'context_field_autocomplete',
    'type' => MENU_CALLBACK,
  );
  return $items;
}