You are here

function theme_uc_attribute_add_to_cart in Ubercart 7.3

Same name and namespace in other branches
  1. 6.2 uc_attribute/uc_attribute.module \theme_uc_attribute_add_to_cart()

Displays the attribute selection form elements.

Parameters

$variables: An associative array containing:

  • form: A render element representing the form.

See also

_uc_attribute_alter_form()

1 theme call to theme_uc_attribute_add_to_cart()
_uc_attribute_alter_form in uc_attribute/uc_attribute.module
Helper function for uc_attribute_form_alter().

File

uc_attribute/uc_attribute.theme.inc, line 40
Theme functions for the uc_attribute module.

Code

function theme_uc_attribute_add_to_cart($variables) {
  $form = $variables['form'];
  $output = '<div id="' . $form['#id'] . '" class="attributes">';
  $stripes = array(
    'even' => 'odd',
    'odd' => 'even',
  );
  $parity = 'even';
  foreach (element_children($form) as $aid) {
    $parity = $stripes[$parity];
    $classes = array(
      'attribute',
      'attribute-' . $aid,
      $parity,
    );
    $output .= '<div class="' . implode(' ', $classes) . '">';
    $output .= drupal_render($form[$aid]);
    $output .= '</div>';
  }
  $output .= drupal_render_children($form) . '</div>';
  return $output;
}