function taxonomy_container_help in Taxonomy container 6
Implements hook_help().
File
- ./
taxonomy_container.module, line 12 - Allows users to organize containers using taxonomy terms.
Code
function taxonomy_container_help($path, $arg) {
if ($path == 'admin/help#taxonomy_container') {
$output = '<p>' . t('The taxonomy container module allows you to organize containers using taxonomy terms.') . '</p>';
$output .= '<p>' . t('This module just alter the node add/edit form, so users do not have opportunity to add node to the root taxonomy terms.') . '</p>';
$output .= '<p>' . t('You can enable this feature on the vocabulary settings page.') . '</p>';
return $output;
}
}