function action_example_menu in Examples for Developers 7
Implements hook_menu().
Provides a menu entry which explains what the module does.
Related topics
File
- action_example/
action_example.module, line 173 - Action definition example module.
Code
function action_example_menu() {
$items['examples/action_example'] = array(
'title' => 'Action Example',
'description' => 'Provides a basic information page.',
'page callback' => '_action_example_page',
'access callback' => TRUE,
);
return $items;
}