function contact_attach_help in Contact Attach 5
Same name and namespace in other branches
- 6 contact_attach.module \contact_attach_help()
- 7 contact_attach.module \contact_attach_help()
Implementation of hook_help().
File
- ./
contact_attach.module, line 14 - This is the main code file for the Contact attach module. This module gives users the ability of attaching one or more files to e-mails sent using the site-wide contact form.
Code
function contact_attach_help($section = '') {
$output = '';
switch ($section) {
case 'admin/settings/contact_attach':
$output = t('This module gives users the ability of attaching one or more files to e-mails sent using the site-wide contact form.');
break;
}
return $output;
}