taxonomy_delete.module in Taxonomy Delete 8
Contains taxonomy_delete.module..
File
taxonomy_delete.moduleView 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
Name | Description |
---|---|
taxonomy_delete_help | Implements hook_help(). |