You are here

function uc_order_help in Ubercart 8.4

Same name and namespace in other branches
  1. 7.3 uc_order/uc_order.module \uc_order_help()

Implements hook_help().

File

uc_order/uc_order.module, line 34
Handles all things concerning Ubercart orders.

Code

function uc_order_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'uc_order.workflow':
      return '<p>' . t('Order statuses with a list position below zero are considered inactive when filtering lists of orders.') . '</p>';
  }
}