You are here

function commerce_purchase_order_help in Commerce Purchase Order 8

Implements hook_help().

File

./commerce_purchase_order.module, line 19
Contains commerce_purchase_order.module..

Code

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

    // Main module help for the commerce_purchase_order module.
    case 'help.page.commerce_purchase_order':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Adds purchase order payment method') . '</p>';
      return $output;
    default:
      return '';
  }
}