You are here

function module_grants_help in Module Grants 7

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

Implementation of hook_help().

File

./module_grants.module, line 19

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>';
}