1 views_ui.theme.inc | theme_views_ui_view_preview_section($variables) |
Returns the HTML for a section of a View being previewed within the Views UI.
File
- core/
modules/ views_ui/ views_ui.theme.inc, line 439 - Theme functions for the Views UI module.
Code
function theme_views_ui_view_preview_section($variables) {
return '<h1 class="section-title">' . $variables['title'] . '</h1>'
. $variables['links']
. '<div class="preview-section">' . $variables['content'] . '</div>';
}