function mailhandler_menu in Mailhandler 6.2
Same name and namespace in other branches
- 5 mailhandler.module \mailhandler_menu()
- 6 mailhandler.module \mailhandler_menu()
- 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;
}