You are here

function nat_help in Node Auto Term [NAT] 6

Same name and namespace in other branches
  1. 5 nat.module \nat_help()
  2. 6.2 nat.module \nat_help()
  3. 7.2 nat.module \nat_help()
  4. 7 nat.module \nat_help()

Implementation of hook_help().

File

./nat.module, line 25
NAT - node auto term - is a helper module that automatically creates a term using the same title as a node.

Code

function nat_help($path, $arg) {
  switch ($path) {
    case 'admin/help#nat':
      return t('NAT - node auto term - is a helper module that automatically creates a term using the same title as a node.');
  }
}