function taxonomy_multidelete_term_help in Taxonomy Multi-delete Terms 7
Implements hook_help().
File
- ./
taxonomy_multidelete_term.module, line 11 - Taxonomy multi delete module use to delete terms in bulk.
Code
function taxonomy_multidelete_term_help($path, $arg) {
switch ($path) {
case 'admin/help#taxonomy_multidelete_term':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>This module help to delete multiple term at one time.' . ' You just need to select terms and click on delete button.' . ' All seleted terms will be delete. You can also delete all terms at one time.</p>';
return $output;
}
}