You are here

function views_test_rss_preprocess_views_view_rss in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/tests/modules/views_test_rss/views_test_rss.module \views_test_rss_preprocess_views_view_rss()

Implements hook_preprocess_HOOK().

File

core/modules/views/tests/modules/views_test_rss/views_test_rss.module, line 11
Hook implementations for this module.

Code

function views_test_rss_preprocess_views_view_rss(&$variables) {
  $variables['channel_elements'][] = [
    '#type' => 'html_tag',
    '#tag' => 'copyright',
    '#value' => t('Copyright 2019 Dries Buytaert'),
  ];
}