You are here

function uc_quote_uc_order_pane in Ubercart 7.3

Implements hook_uc_order_pane().

Defines the shipping quote order pane.

File

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

Code

function uc_quote_uc_order_pane() {
  $panes['quotes'] = array(
    'callback' => 'uc_order_pane_quotes',
    'title' => t('Shipping quote'),
    'desc' => t('Get a shipping quote for the order from a quoting module.'),
    'class' => 'pos-left',
    'weight' => 7,
    'show' => array(
      'edit',
    ),
  );
  return $panes;
}