You are here

function module_grants_help in Module Grants 6.4

Same name and namespace in other branches
  1. 6.3 module_grants.module \module_grants_help()
  2. 7 module_grants.module \module_grants_help()

Implementation of hook_help().

File

./module_grants.module, line 68
Module to apply access grants to pre-published content just as they are to published content and to make multiple content access modules work together in the expected way.

Code

function module_grants_help($path, $arg) {
  switch ($path) {
    case 'admin/help#module_grants':
      $s = t('For help and full documentation see the <a href="@module_grants">Module Grants project page</a>', array(
        '@module_grants' => url('http://drupal.org/project/module_grants'),
      ));
      break;
  }
  return empty($s) ? '' : '<p>' . $s . '</p>';
}