You are here

function commerce_migrate_csv_example_help in Commerce Migrate 3.0.x

Same name and namespace in other branches
  1. 8.2 modules/csv_example/commerce_migrate_csv_example.module \commerce_migrate_csv_example_help()
  2. 3.1.x modules/csv_example/commerce_migrate_csv_example.module \commerce_migrate_csv_example_help()

Implements hook_help().

File

modules/csv_example/commerce_migrate_csv_example.module, line 13
Contains commerce_export.module.

Code

function commerce_migrate_csv_example_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the commerce_export module.
    case 'help.page.commerce_migrate_csv_example':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Commerce Migrate CSV Example module imports products and product variations from an example CSV file.') . '</p>';
      return $output;
  }
}