function nat_help in Node Auto Term [NAT] 6
Same name and namespace in other branches
- 5 nat.module \nat_help()
- 6.2 nat.module \nat_help()
- 7.2 nat.module \nat_help()
- 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.');
}
}