You are here

function echo_menu in Echo 6

Same name and namespace in other branches
  1. 8 echo.module \echo_menu()
  2. 7 echo.module \echo_menu()

Implements hook_menu().

File

./echo.module, line 60
The echo module converts text into a fully-themed page.

Code

function echo_menu() {
  return array(
    'echo' => array(
      'title callback' => '_echo_request',
      'title arguments' => array(
        'title',
      ),
      'page callback' => '_echo_page',
      'access callback' => '_echo_access',
      'type' => MENU_CALLBACK,
    ),
  );
}