function theme_views_ui_container

Generic <div> container function.

File

drupal/core/modules/views/views_ui/theme/theme.inc, line 13
Preprocessors and theme functions for the Views UI.

Code

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