function taxonomy_defaults_help in Taxonomy Defaults 7
Same name and namespace in other branches
- 5 taxonomy_defaults.module \taxonomy_defaults_help()
- 6.2 taxonomy_defaults.module \taxonomy_defaults_help()
- 6 taxonomy_defaults.module \taxonomy_defaults_help()
Implements hook_help().
File
- ./
taxonomy_defaults.module, line 14 - Taxonomy defaults - allows assignment of default terms to node types, either
Code
function taxonomy_defaults_help($path, $arg) {
switch ($path) {
case 'admin/structure/taxonomy/taxonomy_defaults':
$output = '<p>' . t("Below you may select default terms for each content type. Checking the 'Hide' checkbox to hide the vocabulary on the node creation form while still applying the default terms.") . '</p>';
return $output;
}
}