You are here

function mailing_list_help in Mailing List 6

Same name and namespace in other branches
  1. 7 mailing_list.module \mailing_list_help()

Implementation of hook_help().

File

./mailing_list.module, line 11
Minimalistic mailing list module.

Code

function mailing_list_help($path, $arg) {
  if ($path == 'admin/build/mailing-list/%/import') {
    return t('The import facility allows you to upload a CSV file containing e-mail addresses, and optional names, to add to your mailing list. The CSV file should have the e-mails as its first column, and the names (where available) as its second column. It must not have any header row.');
  }
}