function template_preprocess_views_view_list
Same name in other branches
- 9 core/modules/views/views.theme.inc \template_preprocess_views_view_list()
- 10 core/modules/views/views.theme.inc \template_preprocess_views_view_list()
- 11.x 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 833
Code
function template_preprocess_views_view_list(&$variables) {
$handler = $variables['view']->style_plugin;
// Fetch classes from handler options.
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'] = new Attribute([
'class' => $class,
]);
}
// 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'] = $handler->options['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.