You are here

function theme_uc_cart_pane_quotes in Ubercart 7.3

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

Displays the formatted quote cart pane.

Parameters

$variables: An associative array containing:

  • form: A render element representing the form.

File

shipping/uc_quote/uc_quote.theme.inc, line 17
Theme functions for the uc_quote module.

Code

function theme_uc_cart_pane_quotes($variables) {
  $form = $variables['form'];
  $output = '<p class="quote-title">' . t('Estimated shipping cost:') . '</p>';
  $output .= drupal_render_children($form);
  return $output;
}