function multiple_email_help in Multiple E-mail Addresses 5
Same name and namespace in other branches
- 6 multiple_email.module \multiple_email_help()
- 7 multiple_email.module \multiple_email_help()
- 2.x multiple_email.module \multiple_email_help()
Implementation of hook_help().
File
- ./
multiple_email.module, line 20 - multiple_email module file
Code
function multiple_email_help($section) {
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));
break;
}
}