You are here

function term_csv_export_import_help in Term CSV Export Import 8

Same name and namespace in other branches
  1. 8.3 term_csv_export_import.module \term_csv_export_import_help()
  2. 8.2 term_csv_export_import.module \term_csv_export_import_help()

Implements hook_help().

File

./term_csv_export_import.module, line 13
Contains term_csv_export_import.module..

Code

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:
  }
}