You are here

function theme_money_widget in Money field 6

Display a CCK Money field (widget).

File

./money.module, line 384
This module defines the Money CCK field.

Code

function theme_money_widget($element) {
  formatted_number_add_js();
  $children = '<div class="container-inline">' . $element['#children'] . '</div>';
  return theme('form_element', $element, $children);
}