You are here

function theme_views_container in Views (for Drupal 7) 7.3

Generic <div> container function.

File

theme/theme.inc, line 1151
Preprocessors and helper functions to make theming easier.

Code

function theme_views_container($variables) {
  $element = $variables['element'];
  return '<div' . drupal_attributes($element['#attributes']) . '>' . $element['#children'] . '</div>';
}