function theme_ds_region in Display Suite 6.3
Theme function to render an individual region with its content
Parameters
stdClass $vars: Variables required to complete the display.
Return value
A themed region.
File
- theme/
theme.inc, line 85 - Theming functions for ds.
Code
function theme_ds_region($vars) {
$output = '<div' . $vars['attributes'] . '>' . $vars['content'] . '</div>';
return $output;
}