You are here

function _invite_module_help in Invite 6.2

Same name and namespace in other branches
  1. 5.2 invite.module \_invite_module_help()
  2. 7.2 invite.module \_invite_module_help()

Display module help.

1 call to _invite_module_help()
invite_help in ./invite.module
Implementation of hook_help().

File

./invite.module, line 58
Allows your users to send and track invitations to join your site.

Code

function _invite_module_help() {
  $file = drupal_get_path('module', 'invite') . '/README.txt';
  if (file_exists($file)) {
    return _filter_autop(check_plain(file_get_contents($file)));
  }
}