You are here

function commerce_line_item_ui_help in Commerce Core 7

Implements hook_help().

File

modules/line_item/commerce_line_item_ui.module, line 118
Provides the user interface for managing Line Item types.

Code

function commerce_line_item_ui_help($path, $arg) {
  switch ($path) {
    case 'admin/commerce/config/line-items':
      return '<p>' . t('Line items represent anything on an order that affects the order total. Each line item must be of one of the line item types listed below, which define how these items interact with Add to Cart forms, the shopping cart, the order edit page, and more. Line item types are defined by modules, with some modules also allowing you to clone line item types through this interface.') . '</p>';
  }
}