You are here

function multiple_email_help in Multiple E-mail Addresses 2.x

Same name and namespace in other branches
  1. 5 multiple_email.module \multiple_email_help()
  2. 6 multiple_email.module \multiple_email_help()
  3. 7 multiple_email.module \multiple_email_help()

Implements hook_help().

File

./multiple_email.module, line 11
multiple_email module file

Code

function multiple_email_help($path, $arg) {
  switch ($path) {
    case 'admin/help#multiple_email':
    case 'admin/help/multiple_email':
      $file = drupal_get_path('module', 'multiple_email') . "/README.txt";
      return check_markup(file_get_contents($file), 'filtered_html');
  }
}