You are here

function logintoboggan_example_help in LoginToboggan 5

Same name and namespace in other branches
  1. 6 logintoboggan.module \logintoboggan_example_help()
  2. 7 logintoboggan.module \logintoboggan_example_help()

Helper function for example user e-mail textfield.

1 string reference to 'logintoboggan_example_help'
logintoboggan_help in ./logintoboggan.module
Implementation of hook_help()

File

./logintoboggan.module, line 74
Logintoboggan Module

Code

function logintoboggan_example_help() {
  $example = t('
!username,

Thank you for registering at !site.

IMPORTANT:
For full site access, you will need to click on this link or copy and paste it in your browser:

!login_url

This will verify your account and log you into the site. In the future you will be able to log in to !login_uri using the username and password that you created during registration:

Your new !site membership also enables to you to login to other Drupal powered websites (e.g. http://www.drupal.org/) without registering. Just use the following Drupal ID along with the password you\'ve chosen:

Drupal ID: !username@!uri_brief


--  !site team');
  $form['foo'] = array(
    '#type' => 'textarea',
    '#default_value' => $example,
    '#rows' => 15,
  );
  return $form;
}