1 views.theme.inc | theme_views_container($variables) |
Generic <div> container function.
File
- core/
modules/ views/ templates/ views.theme.inc, line 1207 - Preprocessors and helper functions to make theme development easier.
Code
function theme_views_container($variables) {
$element = $variables['element'];
return '<div' . backdrop_attributes($element['#attributes']) . '>' . $element['#children'] . '</div>';
}