theme_uc_cart_pane_quotes

Definition

theme_uc_cart_pane_quotes($form)
ubercart/shipping/uc_quote/uc_quote.module, line 959

Description

Display the formatted quote cart pane.

Code

<?php
function theme_uc_cart_pane_quotes($form) {
  $output = '<div class="solid-border">';
  $output .= '<strong>'. t('Estimated shipping cost:') .'</strong>';
  $output .= drupal_render($form['delivery_postal_code']) . drupal_render($form['get_quote']);
  $output .= drupal_render($form);
  $output .= '</div>';

  return $output;
}
?>