Implements hook_menu().

Provides a simple user interface that tells the developer where to go.

Related topics

File

field_example/field_example.module, line 369
An example field using the Field Types API.

Code

function field_example_menu() {
  $items['examples/field_example'] = array(
    'title' => 'Field Example',
    'page callback' => '_field_example_page',
    'access callback' => TRUE,
  );
  return $items;
}