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()

File

drupal/core/modules/views_ui/views_ui.theme.inc, line 461
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">' . drupal_render($vars['content']) . '</div>';
}