commerce_product_bundle_cart.module in Commerce Product Bundle 8
Contains commerce_product_bundle_cart.module.
File
modules/commerce_product_bundle_cart/commerce_product_bundle_cart.moduleView source
<?php
/**
* @file
* Contains commerce_product_bundle_cart.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function commerce_product_bundle_cart_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the commerce_product_bundle_cart module.
case 'help.page.commerce_product_bundle_cart':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Commerce Cart integration for product bundles.') . '</p>';
return $output;
default:
}
}
Functions
Name | Description |
---|---|
commerce_product_bundle_cart_help | Implements hook_help(). |