function theme_computed_field_formatter_markup in Computed Field 5
Same name and namespace in other branches
- 6 computed_field.module \theme_computed_field_formatter_markup()
Theme function for 'markup' text field formatter.
File
- ./
computed_field.module, line 292
Code
function theme_computed_field_formatter_markup($element) {
$field = content_fields($element['#field_name']);
// For "some" backwards compatibility
$node_field_item['value'] = $element['#item']['value'];
eval($field['display_format']);
return check_markup($display);
}