You are here

function commerce_combine_carts_help in Commerce Combine Carts 8

Implements hook_help().

File

./commerce_combine_carts.module, line 8

Code

function commerce_combine_carts_help($route_name, RouteMatchInterface $route_match) {
  if ($route_name === 'help.page.commerce_combine_carts') {
    $output = '';
    $output .= '<h3>' . t('About') . '</h3>';
    $output .= '<p>' . t('Combines multiple carts so that users only ever have one.') . '</p>';
    return $output;
  }
}