You are here

function commerce_product_bundle_help in Commerce Product Bundle 8

Implements hook_help().

File

./commerce_product_bundle.module, line 18
Contains commerce_product_bundle.module.

Code

function commerce_product_bundle_help($route_name, CurrentRouteMatch $route_match) {
  switch ($route_name) {

    // Main module help for the commerce_product_bundle module.
    case 'help.page.commerce_product_bundle':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Extends Drupal Commerce with a product bundle functionality.') . '</p>';
      return $output;
  }
}