You are here

function ajax_add_to_cart_help in Ajax Add to Cart 8

Implements hook_help().

File

./ajax_add_to_cart.module, line 17
Contains ajax_add_to_cart.module.

Code

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

    // Main module help for the ajax_add_to_cart module.
    case 'help.page.ajax_add_to_cart':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Add ajax add to cart functionality.') . '</p>';
      return $output;
    default:
  }
}