function template_preprocess_views_view_unformatted

Same name in other branches
  1. 8.9.x core/modules/views/views.theme.inc \template_preprocess_views_view_unformatted()
  2. 10 core/modules/views/views.theme.inc \template_preprocess_views_view_unformatted()
  3. 11.x core/modules/views/views.theme.inc \template_preprocess_views_view_unformatted()

Prepares variables for views unformatted rows templates.

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

Parameters

array $variables: An associative array containing:

  • view: The view object.
  • rows: An array of row items. Each row is an array of content.
1 call to template_preprocess_views_view_unformatted()
template_preprocess_views_view_list in core/modules/views/views.theme.inc
Prepares variables for Views HTML list templates.

File

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

Code

function template_preprocess_views_view_unformatted(&$variables) {
    $view = $variables['view'];
    $rows = $variables['rows'];
    $style = $view->style_plugin;
    $options = $style->options;
    $variables['default_row_class'] = !empty($options['default_row_class']);
    foreach ($rows as $id => $row) {
        $variables['rows'][$id] = [];
        $variables['rows'][$id]['content'] = $row;
        $variables['rows'][$id]['attributes'] = new Attribute();
        if ($row_class = $view->style_plugin
            ->getRowClass($id)) {
            $variables['rows'][$id]['attributes']->addClass($row_class);
        }
    }
}

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