You are here

function uc_quote_line_item in Ubercart 5

Same name and namespace in other branches
  1. 6.2 shipping/uc_quote/uc_quote.module \uc_quote_line_item()

Defines the shipping quote line item.

File

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

Code

function uc_quote_line_item() {
  $items[] = array(
    'id' => 'shipping',
    'title' => t('Shipping'),
    'weight' => 1,
    'default' => false,
    'stored' => true,
    'calculated' => true,
    'display_only' => false,
    'add_list' => true,
  );
  return $items;
}