You are here

function nodereferrer_help in NodeReferrer 7

Same name and namespace in other branches
  1. 5 nodereferrer.module \nodereferrer_help()
  2. 6 nodereferrer.module \nodereferrer_help()

Implements hook_help().

File

./nodereferrer.module, line 15
Defines a field type for backlinking referencing nodes.

Code

function nodereferrer_help($path, $arg) {
  switch ($path) {
    case 'admin/modules#description':
      return t('Defines a field type for displaying referrers to a node. <em>Note: Requires node_reference module.</em>');
  }
}