You are here

views_rss_core.install in Views RSS 8.3

(Un)installation functions for Views RSS: Core Elements module.

File

modules/views_rss_core/views_rss_core.install
View source
<?php

/**
 * @file
 * (Un)installation functions for Views RSS: Core Elements module.
 */
use Drupal\Core\Cache\Cache;

/**
 * Implements hook_install().
 */
function views_rss_core_install() {
  Cache::invalidateTags(array(
    'views_rss',
  ));
}

/**
 * Implements hook_uninstall().
 */
function views_rss_core_uninstall() {
  Cache::invalidateTags(array(
    'views_rss',
  ));
}

Functions