' . t('Estimated shipping cost:') . '

'; $output .= drupal_render_children($form); return $output; } /** * Displays the returned shipping rates. * * @param $variables * An associative array containing: * - form: A render element representing the form. * * @ingroup themeable */ function theme_uc_quote_returned_rates($variables) { $form = $variables['form']; $output = ''; $keys = element_children($form); // Render notes and error messages after each radio button. if (count($keys) > 1) { foreach ($keys as $key) { if ($key == 'quote_option') { continue; } if (isset($form['quote_option'][$key])) { $output .= drupal_render($form['quote_option'][$key]); } $output .= drupal_render($form[$key]); } } $output .= drupal_render_children($form); return $output; }