function theme_views_ui_view_preview_section

Returns the HTML for a section of a View being previewed within the Views UI.

1 theme call to theme_views_ui_view_preview_section()
views_ui_preprocess_views_view in drupal/core/modules/views/views_ui/views_ui.module
Theme preprocess for views-view.tpl.php.

File

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

Code

function theme_views_ui_view_preview_section($vars) {
  return '<h1 class="section-title">' . $vars['title'] . '</h1>' . $vars['links'] . '<div class="preview-section">' . $vars['content'] . '</div>';
}