function theme_ds_objects in Display Suite 6.2
Same name and namespace in other branches
- 6.3 theme/theme.inc \theme_ds_objects()
- 6 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()
- ds_regiontoblock::block_view in plugins/
ds_regiontoblock.inc - plugin block view
File
- theme/
theme.inc, line 160 - Theming functions for ds.
Code
function theme_ds_objects($data, $extra) {
$output = '';
foreach ($data as $key => $value) {
$output .= $value->content;
}
return $output;
}