You are here

function theme_uc_cart_pane_quotes in Ubercart 5

Same name and namespace in other branches
  1. 8.4 shipping/uc_quote/uc_quote.theme.inc \theme_uc_cart_pane_quotes()
  2. 6.2 shipping/uc_quote/uc_quote.module \theme_uc_cart_pane_quotes()
  3. 7.3 shipping/uc_quote/uc_quote.theme.inc \theme_uc_cart_pane_quotes()

Display the formatted quote cart pane.

File

shipping/uc_quote/uc_quote.module, line 1048
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;
}