function shib_auth_custom_email in Shibboleth Authentication 6.3
Generate the custom e-mail provider form @returns HTML text of the custom e-mail form
2 string references to 'shib_auth_custom_email'
- shib_auth_init in ./
shib_auth.module - Create a new user based on informations from the Shibboleth handler if it's necessary or log in.
- shib_auth_menu in ./
shib_auth.module - Generate the menu element to access the Shibboleth authentication module's administration page @returns HTML text of the administer menu element
File
- ./
shib_auth.module, line 579 - This is a Shibboleth authentication module.
Code
function shib_auth_custom_email() {
$form = array();
$form['custom_mail'] = array(
'#type' => 'textfield',
'#title' => t('E-mail'),
'#size' => 60,
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Send'),
);
return $form;
}