You are here

function mailcontrol_help in Mailcontrol 6

Same name and namespace in other branches
  1. 8 mailcontrol.module \mailcontrol_help()
  2. 7 mailcontrol.module \mailcontrol_help()

Implements hook_help().

File

./mailcontrol.module, line 15
This is the main file of the module.

Code

function mailcontrol_help($path, $arg) {
  switch ($path) {

    // Main module help for the mailcontrol module.
    case 'admin/help#mailcontrol':
      return '<p>' . t('Have 100% control over the default mails sent by Drupal 7 out of the box.</br>
      This small module extends original Drupal 7 account settings page with the ability to turn ON/OFF all standard mails.</br>
      By default Drupal 7 provides no option to disable welcome emails, account cancellation confirmation or password reset.</br>
      This can be useful when you don\'t want to send those emails, or you are sending them through some external services or just for development purposes, etc.</br>
      You can access these settings under <a href="@conf_url">admin/config/people/accounts</a>.</br>
      The module provide only interface modifications. The underlying functionality is already there by default in Drupal 7.', array(
        '@conf_url' => url('admin/config/people/accounts'),
      )) . '</p>';
  }
}