function field_example_menu

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

Code

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