You are here

term_csv_export_import.module in Term CSV Export Import 8

Same filename and directory in other branches
  1. 8.3 term_csv_export_import.module
  2. 8.2 term_csv_export_import.module

File

term_csv_export_import.module
View 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

Namesort descending Description
term_csv_export_import_help Implements hook_help().