You are here

function mailhandler_menu in Mailhandler 6.2

Same name and namespace in other branches
  1. 5 mailhandler.module \mailhandler_menu()
  2. 6 mailhandler.module \mailhandler_menu()
  3. 7 mailhandler.module \mailhandler_menu()

Implementation of hook_menu().

File

./mailhandler.module, line 20
Retrieves email for posting as nodes and comments.

Code

function mailhandler_menu() {
  $items['mailhandler/mailbox_test'] = array(
    'page callback' => '_mailhandler_mailbox_test',
    'access arguments' => array(
      'administer mailhandler',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}