You are here

function theme_uc_attribute_option in Ubercart 7.3

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

Displays an attribute option with an optional total or adjustment price.

Parameters

$variables: An associative array containing:

  • option: The option name.
  • price: The price total or adjustment, if any.

Return value

string The HTML output.

See also

_uc_attribute_alter_form()

1 theme call to theme_uc_attribute_option()
_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 22
Theme functions for the uc_attribute module.

Code

function theme_uc_attribute_option($variables) {
  $output = $variables['option'];
  if ($variables['price']) {
    $output .= ', ' . $variables['price'];
  }
  return $output;
}