You are here

function nat_help in Node Auto Term [NAT] 5

Same name and namespace in other branches
  1. 6.2 nat.module \nat_help()
  2. 6 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 34
NAT - node auto term - is a helper module that automatically creates a term using the same title as a node.

Code

function nat_help($section) {
  switch ($section) {
    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.');
  }
}