function action_example_menu

Implements hook_menu().

Provides a menu entry which explains what the module does.

Related topics

File

action_example/action_example.module, line 173

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;
}