You are here

function uc_quote_uc_line_item in Ubercart 7.3

Implements hook_uc_line_item().

File

shipping/uc_quote/uc_quote.module, line 325
The controller module for fulfillment modules that process physical goods.

Code

function uc_quote_uc_line_item() {
  $items['shipping'] = array(
    'title' => t('Shipping'),
    'weight' => 1,
    'default' => FALSE,
    'stored' => TRUE,
    'calculated' => TRUE,
    'display_only' => FALSE,
    'add_list' => TRUE,
  );
  return $items;
}