theme_domain_views_view_multiple_field

Versions
domain
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.

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.

Code

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;
}
?>

Contact

  • agentrickard [at] gmail [dot] com

Donations

My Amazon.com Wish List