You are here

function theme_computed_field_formatter_computed_value in Computed Field 5

Same name and namespace in other branches
  1. 6 computed_field.module \theme_computed_field_formatter_computed_value()

Theme function for 'computed_value' text field formatter.

File

./computed_field.module, line 303

Code

function theme_computed_field_formatter_computed_value($element) {
  return $element['#item']['value'];
}