views_rss-8.x-2.x-dev/modules/views_rss_dc/views_rss_dc.install
modules/views_rss_dc/views_rss_dc.install
<?php
/**
* @file
* Installation and Uninstallation functions for Views RSS: DC Elements module.
*/
use Drupal\Core\Cache\Cache;
/**
* Implements hook_install().
*/
function views_rss_dc_install() {
Cache::invalidateTags(['views_rss']);
}
/**
* Implements hook_uninstall().
*/
function views_rss_dc_uninstall() {
Cache::invalidateTags(['views_rss']);
}
