function entity_example_menu
Implements hook_menu().
Related topics
File
-
entity_example/
entity_example.module, line 149
Code
function entity_example_menu() {
$items['examples/entity_example'] = array(
'title' => 'Entity Example',
'page callback' => 'entity_example_info_page',
'access arguments' => array(
'view any entity_example_basic entity',
),
);
// This provides a place for Field API to hang its own
// interface and has to be the same as what was defined
// in basic_entity_info() above.
$items['admin/structure/entity_example_basic/manage'] = array(
'title' => 'Administer entity_example_basic entity type',
'page callback' => 'entity_example_basic_list_entities',
'access arguments' => array(
'administer entity_example_basic entities',
),
);
// Add example entities.
$items['admin/structure/entity_example_basic/manage/add'] = array(
'title' => 'Add an Entity Example Basic Entity',
'page callback' => 'entity_example_basic_add',
'access arguments' => array(
'create entity_example_basic entities',
),
'type' => MENU_LOCAL_ACTION,
);
// List of all entity_example_basic entities.
$items['admin/structure/entity_example_basic/manage/list'] = array(
'title' => 'List',
'type' => MENU_DEFAULT_LOCAL_TASK,
);
// The page to view our entities - needs to follow what
// is defined in basic_uri and will use load_basic to retrieve
// the necessary entity info.
$items['examples/entity_example/basic/%entity_example_basic'] = array(
'title callback' => 'entity_example_basic_title',
'title arguments' => array(
3,
),
'page callback' => 'entity_example_basic_view',
'page arguments' => array(
3,
),
'access arguments' => array(
'view any entity_example_basic entity',
),
);
// 'View' tab for an individual entity page.
$items['examples/entity_example/basic/%entity_example_basic/view'] = array(
'title' => 'View',
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10,
);
// 'Edit' tab for an individual entity page.
$items['examples/entity_example/basic/%entity_example_basic/edit'] = array(
'title' => 'Edit',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'entity_example_basic_form',
3,
),
'access arguments' => array(
'edit any entity_example_basic entity',
),
'type' => MENU_LOCAL_TASK,
);
// Add example entities.
$items['examples/entity_example/basic/add'] = array(
'title' => 'Add an Entity Example Basic Entity',
'page callback' => 'entity_example_basic_add',
'access arguments' => array(
'create entity_example_basic entities',
),
);
return $items;
}