function theme_uc_cart_pane_quotes in Ubercart 6.2
Same name and namespace in other branches
- 8.4 shipping/uc_quote/uc_quote.theme.inc \theme_uc_cart_pane_quotes()
- 5 shipping/uc_quote/uc_quote.module \theme_uc_cart_pane_quotes()
- 7.3 shipping/uc_quote/uc_quote.theme.inc \theme_uc_cart_pane_quotes()
Displays the formatted quote cart pane.
File
- shipping/
uc_quote/ uc_quote.module, line 780 - The controller module for fulfillment modules that process physical goods.
Code
function theme_uc_cart_pane_quotes($form) {
$output = '<div class="solid-border">';
$output .= '<strong>' . t('Estimated shipping cost:') . '</strong>';
$output .= drupal_render($form['delivery_country']);
$output .= drupal_render($form['delivery_zone']);
$output .= drupal_render($form['delivery_postal_code']);
$output .= drupal_render($form['get_quote']);
$output .= drupal_render($form);
$output .= '</div>';
return $output;
}