function term_merge_help in Term Merge 7
Same name and namespace in other branches
- 5 term_merge.module \term_merge_help()
- 6 term_merge.module \term_merge_help()
Implements hook_help().
File
- ./
term_merge.module, line 149 - Provide functionality for merging taxonomy terms one into another.
Code
function term_merge_help($path, $arg) {
switch ($path) {
// Main module help for the Term Merge module.
case 'admin/help#term_merge':
return '<p>' . t('Allows you to merge multiple terms into one and and at the same time update all fields referencing the old ones.') . '</p>';
break;
}
}