function taxonomy_dupecheck_help in Taxonomy dupecheck 6
Same name and namespace in other branches
- 7 taxonomy_dupecheck.module \taxonomy_dupecheck_help()
Implements hook_help().
File
- ./
taxonomy_dupecheck.module, line 11 - Module file for the Taxonomy dupecheck module.
Code
function taxonomy_dupecheck_help($path, $arg) {
if ($path == 'admin/help/taxonomy_dupecheck') {
$output = '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t("The Taxonomy dupecheck module prevents Drupal administrators from adding duplicate taxonomy vocabularies and/or terms. It's helpful when entering large amounts of terms or vocabularies in situations where each value must be unique. This saves time by preventing administrators from enforcing a unique value policy through later cleanup.") . '</p>';
$output .= '<p>' . t("The module provides a configuration screen allowing administrators to choose which should be unique: taxonomy terms, vocabularies or both. It defaults to case-insensitive comparisons, with an option to change to case-sensitive. Based on the settings, the user will see an error message when adding a duplicate value.") . '</p>';
return $output;
}
}