template_preprocess_views_view_summary_unformatted

template_preprocess_views_view_summary_unformatted(&$variables) Prepares variables for unformatted summary view templates. Default template: views-view-summary-unformatted.html.twig. Parameters array $variables: An associative array containing: view: A ViewExecutable object. rows: The raw row data. options: An array of options. Each option contains: separator: A string to be placed between inline fields to keep them visually distinct. File core/modules/views/views.theme.inc, line 32

template_preprocess_views_view_rss

template_preprocess_views_view_rss(&$variables) Prepares variables for RSS feed templates. Default template: views-view-rss.html.twig. Parameters array $variables: An associative array containing: view: A ViewExecutable object. rows: The raw row data. File core/modules/views/views.theme.inc, line 835 Preprocessors and helper functions to make theming easier. Code function template_preprocess_views_view_rss(&$variables) { $view = $variables['view']; $items = $variables['rows']

template_preprocess_views_view_table

template_preprocess_views_view_table(&$variables) Prepares variables for views table templates. Default template: views-view-table.html.twig. Parameters array $variables: An associative array containing: view: A ViewExecutable object. rows: The raw row data. File core/modules/views/views.theme.inc, line 410 Preprocessors and helper functions to make theming easier. Code function template_preprocess_views_view_table(&$variables) { $view = $variables['view']; // We need the ra

template_preprocess_views_view_summary

template_preprocess_views_view_summary(&$variables) Prepares variables for views summary templates. The summary prints a single record from a row, with fields. Default template: views-view-summary.html.twig. Parameters array $variables: An associative array containing: view: A ViewExecutable object. rows: The raw row data. File core/modules/views/views.theme.inc, line 239 Preprocessors and helper functions to make theming easier. Code function template_preprocess_views_view_summary(&

template_preprocess_views_view_row_rss

template_preprocess_views_view_row_rss(&$variables) Prepares variables for views RSS item templates. Default template: views-view-row-rss.html.twig. Parameters array $variables: An associative array containing: row: The raw results rows. File core/modules/views/views.theme.inc, line 903 Preprocessors and helper functions to make theming easier. Code function template_preprocess_views_view_row_rss(&$variables) { $item = $variables['row']; $variables['title'] = $item->title;

template_preprocess_views_view_list

template_preprocess_views_view_list(&$variables) 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 802 Preprocessors and helper functions to make theming easier. Code function template_preprocess_views_view_list(&$variables) { $handler = $variables['view']->style_plugin; // Fetch classes from handler o

template_preprocess_views_view_opml

template_preprocess_views_view_opml(&$variables) Prepares variables for OPML feed templates. Default template: views-view-opml.html.twig. Parameters array $variables: An associative array containing: view: A ViewExecutable object. rows: The raw row data. File core/modules/views/views.theme.inc, line 935 Preprocessors and helper functions to make theming easier. Code function template_preprocess_views_view_opml(&$variables) { $view = $variables['view']; $items = $variables['ro

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 function template_preprocess_views_view_row_opml(&$variables) { $item = $variables['row']; $variables['attributes'] = new Att

template_preprocess_views_view_grouping

template_preprocess_views_view_grouping(&$variables) Prepares variables for views single grouping templates. Default template: views-view-grouping.html.twig. Parameters array $variables: An associative array containing: view: The view object. rows: The rows returned from the view. grouping_level: Integer indicating the hierarchical level of the grouping. content: The content to be grouped. title: The group heading. File core/modules/views/views.theme.inc, line 207 Preprocessors and

template_preprocess_views_view_grid

template_preprocess_views_view_grid(&$variables) Prepares variables for views grid style templates. Default template: views-view-grid.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. File core/modules/views/views.theme.inc, line 675 Preprocessors and helper functions to make theming easier. Code function template_preprocess_views_view_grid(&$variables) { $options = $vari