| Versions | |
|---|---|
| 7 | action_example_menu() |
Implements hook_menu().
Simply provide a menu entry which explains what the module does.
examples/
<?php
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;
}
?>