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 ./views_ui.module
Theme preprocess for views-view.tpl.php.

File

./views_ui.module, line 514
Provide structure for the administrative interface to Views.

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