function email_menu in Email Field 5
Same name and namespace in other branches
- 6.2 email.module \email_menu()
- 6 email.module \email_menu()
- 7 email.module \email_menu()
Implementation of hook_menu().
File
- ./
email.module, line 194
Code
function email_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array(
'path' => 'email',
'title' => t('Email Contact Form'),
'callback' => 'email_mail_page',
'access' => user_access('access content'),
'type' => MENU_CALLBACK,
);
}
return $items;
}