function uc_quote_order_pane in Ubercart 6.2
Same name and namespace in other branches
- 5 shipping/uc_quote/uc_quote.module \uc_quote_order_pane()
Implements hook_order_pane().
Defines the shipping quote order pane.
File
- shipping/
uc_quote/ uc_quote.module, line 499 - The controller module for fulfillment modules that process physical goods.
Code
function uc_quote_order_pane() {
$panes = array();
$panes[] = array(
'id' => 'quotes',
'callback' => 'uc_order_pane_quotes',
'title' => t('Shipping quote'),
'desc' => t('Get a shipping quote for the order from a quoting module.'),
'class' => 'abs-left',
'weight' => 7,
'show' => array(
'edit',
),
);
return $panes;
}