function uc_quote_checkout_pane in Ubercart 6.2
Same name and namespace in other branches
- 5 shipping/uc_quote/uc_quote.module \uc_quote_checkout_pane()
Defines the shipping quote checkout pane.
File
- shipping/
uc_quote/ uc_quote.module, line 483 - The controller module for fulfillment modules that process physical goods.
Code
function uc_quote_checkout_pane() {
$panes[] = array(
'id' => 'quotes',
'callback' => 'uc_checkout_pane_quotes',
'title' => t('Calculate shipping cost'),
'desc' => t('Extra information necessary to ship.'),
'weight' => 5,
'shippable' => TRUE,
);
return $panes;
}