Same filename and directory in other branches
  1. 8.9.x core/modules/views/tests/modules/views_test_rss/views_test_rss.module
  2. 9 core/modules/views/tests/modules/views_test_rss/views_test_rss.module

Hook implementations for this module.

File

core/modules/views/tests/modules/views_test_rss/views_test_rss.module
View source
<?php

/**
 * @file
 * Hook implementations for this module.
 */

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

Functions