template_preprocess_views_view_row_opml

template_preprocess_views_view_row_opml(&$variables)

Prepares variables for views OPML item templates.

Default template: views-view-row-opml.html.twig.

Parameters

array $variables: An associative array containing:

  • row: The raw results rows.

File

core/modules/views/views.theme.inc, line 970
Preprocessors and helper functions to make theming easier.

Code

1
2
3
4
5
function template_preprocess_views_view_row_opml(&$variables) {
  $item = $variables['row'];
 
  $variables['attributes'] = new Attribute($item);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.