You are here

function multiple_email_add_page in Multiple E-mail Addresses 5

Renders the page for adding a new email address

Return value

string

1 string reference to 'multiple_email_add_page'
multiple_email_menu in ./multiple_email.module
Implementation of hook_menu()

File

./multiple_email_add_page.inc, line 13
Functions for the page to add a new email address to the registry.

Code

function multiple_email_add_page() {
  global $user;
  $out = '';
  $out .= drupal_get_form('multiple_email_add_form', $user);
  return $out;
}