function field_tools_taxonomy_help in Field tools 7
Implements hook_help().
File
- field_tools_taxonomy/
field_tools_taxonomy.module, line 10 - field_tools_taxonomy.module Provides a UI for quickly applying a taxonomy to multiple entities as a term reference fields.
Code
function field_tools_taxonomy_help($path, $arg) {
switch ($path) {
case 'admin/structure/taxonomy/%/apply':
return t("Apply this vocabulary to multiple entities as a term reference field.");
}
}