You are here

function theme_views_ui_container in Views (for Drupal 7) 8.3

Generic <div> container function.

File

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>';
}