You are here

function logintoboggan_example_help in LoginToboggan 7

Same name and namespace in other branches
  1. 5 logintoboggan.module \logintoboggan_example_help()
  2. 6 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
Implement hook_help().

File

./logintoboggan.module, line 104
LoginToboggan module

Code

function logintoboggan_example_help() {
  $example = t('
[user:name],

Thank you for registering.

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

[user:validate-url]

This will verify your account and log you into the site. In the future you will be able to log in to [site:login-url] using the username and password that you created during registration.
');
  $form['foo'] = array(
    '#type' => 'textarea',
    '#default_value' => $example,
    '#rows' => 15,
  );
  return $form;
}