You are here

function uc_order_help in Ubercart 7.3

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

Implements hook_help().

File

uc_order/uc_order.module, line 89

Code

function uc_order_help($path, $arg) {
  switch ($path) {
    case 'admin/store/settings/orders/products/fields':
      return '<p>' . t('Attach fields to order product entities.  These entities represent the product line items that appear in orders.  Fields attached here are not visible in the current version of Ubercart, but they are available in Views.  A ') . l(t('Computed Field'), 'http://drupal.org/project/computed_field') . t(' is useful for attaching custom data to each product as it is ordered.') . '</p>';
  }
}