function template_preprocess_views_view_list

Same name and namespace in other branches
  1. 9 core/modules/views/views.theme.inc \template_preprocess_views_view_list()
  2. 8.9.x core/modules/views/views.theme.inc \template_preprocess_views_view_list()
  3. 10 core/modules/views/views.theme.inc \template_preprocess_views_view_list()

Prepares variables for Views HTML list templates.

Default template: views-view-list.html.twig.

Parameters

array $variables: An associative array containing:

  • view: A View object.

File

core/modules/views/views.theme.inc, line 868

Code

function template_preprocess_views_view_list(&$variables) : void {
  $handler = $variables['view']->style_plugin;
  // Fetch classes from handler options.
  $variables['list']['attributes'] = new Attribute();
  if ($handler->options['class']) {
    $class = explode(' ', $handler->options['class']);
    $class = array_map('\\Drupal\\Component\\Utility\\Html::cleanCssIdentifier', $class);
    // Initialize a new attribute class for $class.
    $variables['list']['attributes']->addClass($class);
  }
  $type = $handler->options['type'];
  if ($type === 'ol') {
    $pager = $variables['view']->getPager();
    $variables['list']['attributes']['start'] = $variables['view']->getCurrentPage() * $pager->options['items_per_page'] + 1;
  }
  // Fetch wrapper classes from handler options.
  if ($handler->options['wrapper_class']) {
    $wrapper_class = explode(' ', $handler->options['wrapper_class']);
    $variables['attributes']['class'] = array_map('\\Drupal\\Component\\Utility\\Html::cleanCssIdentifier', $wrapper_class);
  }
  $variables['list']['type'] = $type;
  template_preprocess_views_view_unformatted($variables);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.