You are here

function contact_attach_help in Contact Attach 6

Same name and namespace in other branches
  1. 5 contact_attach.module \contact_attach_help()
  2. 7 contact_attach.module \contact_attach_help()

Implementation of hook_help().

File

./contact_attach.module, line 15
Allows attaching files to e-mails sent using the site-wide contact form.

Code

function contact_attach_help($path, $arg) {
  $output = '';
  switch ($path) {
    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;
}