You are here

function theme_ds_objects in Display Suite 6.3

Same name and namespace in other branches
  1. 6 theme/theme.inc \theme_ds_objects()
  2. 6.2 theme/theme.inc \theme_ds_objects()

Theme a collection of ds objects.

Parameters

array $data A collection of data to print.:

array $extra A collection data, ie context etc ..:

1 theme call to theme_ds_objects()
dsRegionToBlock::block_view in plugins/ds_extension/regiontoblock.inc
plugin block view

File

theme/theme.inc, line 151
Theming functions for ds.

Code

function theme_ds_objects($data, $extra) {
  $output = '';
  foreach ($data as $key => $value) {
    $output .= $value->content;
  }
  return $output;
}