function theme_domain_views_view_multiple_field in Domain Views 7
Theme multiple field output.
Note that we only use $items in the default, but other themes might wish to leverage the extra data.
Parameters
$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.
Return value
Themed HTML output.
1 theme call to theme_domain_views_view_multiple_field()
- domain_views_handler_field_domain_access_sitename::render in includes/
domain_views_handler_field_domain_access_sitename.inc - Render the field.
File
- ./
domain_views.module, line 80 - Provides a Views filter for the Domain Access module.
Code
function theme_domain_views_view_multiple_field($items, $field, $values) {
$output = '';
foreach ($items as $item) {
$output .= '<div class="field-item">' . $item . '</div>';
}
return $output;
}