1 field_example.module field_example_menu()

Implements hook_menu().

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

Related topics

File

modules/examples/field_example/field_example.module, line 371
Hook implementations for the Field Example module.

Code

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