You are here

function taxonomy_delete_help in Taxonomy Delete 8

Implements hook_help().

File

./taxonomy_delete.module, line 13
Contains taxonomy_delete.module..

Code

function taxonomy_delete_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the taxonomy_delete module.
    case 'help.page.taxonomy_delete':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('A utility module which will delete all the taxonomy under a Vocabulary.') . '</p>';
      return $output;
    default:
  }
}