function nat_help in Node Auto Term [NAT] 7.2
Same name and namespace in other branches
- 5 nat.module \nat_help()
- 6.2 nat.module \nat_help()
- 6 nat.module \nat_help()
- 7 nat.module \nat_help()
Implements 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 based on the contents of a created node.');
case 'admin/structure/nat':
return t('NAT is a helper module used to facilitate node-node
relationships through the use of the Taxonomy module; i.e. when a node
is created, a taxonomy term is also created automatically using its
title, body and other configured fields in any associated vocabularies.
<p>The NAT configuration form can be used to associate node types to
taxonomy vocabularies and also configure other properties of the
association. Once associated, field associations for each node type can
be configured via the <a href="!fields-url">Fields</a> tab.</p>', array(
'!fields-url' => url('admin/structure/nat/fields'),
));
}
}