You are here

function multiple_email_help in Multiple E-mail Addresses 6

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

Implementation of hook_help().

File

./multiple_email.module, line 11
multiple_email module file

Code

function multiple_email_help($section, $arg) {
  switch ($section) {
    case 'admin/help#multiple_email':
    case 'admin/help/multiple_email':
      $path = drupal_get_path('module', 'multiple_email') . "/README.txt";
      return filter_filter('process', 2, NULL, file_get_contents($path));
  }
}