You are here

function template_preprocess_views_view_list in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 8.3 theme/theme.inc \template_preprocess_views_view_list()
  2. 6.2 theme/theme.inc \template_preprocess_views_view_list()
  3. 7.3 theme/theme.inc \template_preprocess_views_view_list()

Display the view as an HTML list element

File

theme/theme.inc, line 697
theme.inc

Code

function template_preprocess_views_view_list(&$vars) {
  $handler = $vars['view']->style_plugin;
  $vars['class'] = views_css_safe($handler->options['class']);
  $vars['wrapper_class'] = views_css_safe($handler->options['wrapper_class']);
  $vars['wrapper_prefix'] = '';
  $vars['wrapper_suffix'] = '';
  $vars['list_type_prefix'] = '<' . $handler->options['type'] . '>';
  $vars['list_type_suffix'] = '</' . $handler->options['type'] . '>';
  if ($vars['wrapper_class']) {
    $vars['wrapper_prefix'] = '<div class="' . $vars['wrapper_class'] . '">';
    $vars['wrapper_suffix'] = '</div>';
  }
  if ($vars['class']) {
    $vars['list_type_prefix'] = '<' . $handler->options['type'] . ' class="' . $vars['class'] . '">';
  }
  template_preprocess_views_view_unformatted($vars);
}