You are here

function taxonomy_multidelete_terms_help in Taxonomy Multi-delete Terms 8

Implements hook_help().

File

./taxonomy_multidelete_terms.module, line 19
Control taxonomy term delete.

Code

function taxonomy_multidelete_terms_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.taxonomy_multidelete_terms':
      return '<p>' . t('This module help to delete multiple term at one time.<br>You just need to select terms and click on delete button.</br>All selected terms will be delete. You can also delete all terms at one time.') . '</p>';
  }
}