function multiple_email_help in Multiple E-mail Addresses 2.x
Same name and namespace in other branches
- 5 multiple_email.module \multiple_email_help()
 - 6 multiple_email.module \multiple_email_help()
 - 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');
  }
}