commerce_export-8.x-1.0-alpha1/commerce_export.module
commerce_export.module
<?php
/**
* @file
* Contains commerce_export.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function commerce_export_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the commerce_export module.
case 'help.page.commerce_export':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Commerce Product Import module imports products and product variations from a CSV file. It provides a user interface for uploading the source CSV file or files.') . '</p>';
return $output;
}
}
