You are here

function theme_mvf_widget in Measured Value Field 6

Display a MVF field (widget).

File

./mvf.module, line 654
Measured Value Field module.

Code

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