You are here

function email_menu in Email Field 6.2

Same name and namespace in other branches
  1. 5 email.module \email_menu()
  2. 6 email.module \email_menu()
  3. 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;
}