function constant_contact_help in Constant Contact 6
Same name and namespace in other branches
- 5 constant_contact.module \constant_contact_help()
- 6.3 constant_contact.module \constant_contact_help()
- 6.2 constant_contact.module \constant_contact_help()
- 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"));
}
}