theme_domain_views_view_multiple_field($items, $field, $values)Theme multiple field output.
Note that we only use $items in the default, but other themes might wish to leverage the extra data.
$items An array of output strings, as defined by the view field definition.
$field A string representing the name of the field being displayed.
$values An object containing the prepared views data, before it was altered by our handler.
Themed HTML output.
domain_views/domain_views.module, line 55
<?php
function theme_domain_views_view_multiple_field($items, $field, $values) {
$output = '';
foreach ($items as $item) {
$output .= '<div class="field-item">'. $item .'</div>';
}
return $output;
}
?>