content_csv_export_import-1.0.1-beta2/content_csv_export_import.module
content_csv_export_import.module
<?php
/**
* @file
* Contains content_csv_export_import.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function content_csv_export_import_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the content_csv_export_import module.
case 'help.page.content_csv_export_import':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Exports content and imports using CSV') . '</p>';
return $output;
default:
}
}
