You are here

function constant_contact_help in Constant Contact 5

Same name and namespace in other branches
  1. 6.3 constant_contact.module \constant_contact_help()
  2. 6 constant_contact.module \constant_contact_help()
  3. 6.2 constant_contact.module \constant_contact_help()
  4. 7.3 constant_contact.module \constant_contact_help()

Implementation of hook_help().

File

./constant_contact.module, line 51

Code

function constant_contact_help($section) {
  switch ($section) {
    case 'admin/help/constant_contact':
    case 'admin/help#constant_contact':

      // Return a line-break version of the module README
      return filter_filter('process', 2, NULL, file_get_contents(dirname(__FILE__) . "/README.txt"));
  }
}