term_csv_export_import.module in Term CSV Export Import 8
Same filename and directory in other branches
Contains term_csv_export_import.module..
File
term_csv_export_import.moduleView source
<?php
/**
* @file
* Contains term_csv_export_import.module..
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function term_csv_export_import_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the term_csv_export_import module.
case 'help.page.term_csv_export_import':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Helper module to quickly import a list of terms with parent structure.') . '</p>';
return $output;
default:
}
}
Functions
Name | Description |
---|---|
term_csv_export_import_help | Implements hook_help(). |