You are here

function contact_attach_help in Contact Attach 7

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

Implements hook_help().

File

./contact_attach.module, line 29
Allows attaching files to messages sent using contact forms.

Code

function contact_attach_help($path, $arg) {
  switch ($path) {
    case 'admin/config/media/contact_attach':
      return '<p>' . t('The roles that are listed here are those that have the necessary permissions to attach files on the specified contact form. To make a role appear here so that the settings for that role can be changed, grant the necessary permissions in the module\'s section on the <a href="@permissions">permissions</a> page.', array(
        '@permissions' => url('admin/people/permissions'),
      )) . '</p>';
  }
}