You are here

taxonomy_delete.module in Taxonomy Delete 8

File

taxonomy_delete.module
View source
<?php

/**
 * @file
 * Contains taxonomy_delete.module..
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
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:
  }
}

Functions

Namesort descending Description
taxonomy_delete_help Implements hook_help().