function theme_node_field_views_node_field in Node Field 7.2
Theme for node fields views widget.
File
- theme/
node_field.theme.inc, line 11 - Theme functions for node_field module.
Code
function theme_node_field_views_node_field($variables) {
$output = '';
$node_fields = $variables['node_fields'];
foreach ($node_fields as $field) {
$output .= '</br>' . $field['title'] . ': ' . $field['value'];
}
return $output;
}