1 field_permission_example.module field_permission_example_menu()

Implements hook_menu().

Provides a simple user interface that gives the developer some clues.

Related topics

File

modules/examples/field_permission_example/field_permission_example.module, line 299
Hook implementations for the Field Permission Example module.

Code

function field_permission_example_menu() {
  $items['examples/field_permission_example'] = array(
    'title' => 'Field Permission Example',
    'page callback' => '_field_permission_example_page',
    'access callback' => TRUE,
  );
  return $items;
}