You are here

views_rss_yandex.install in Views RSS: Yandex Elements 8

Same filename and directory in other branches
  1. 6 views_rss_yandex.install
  2. 7 views_rss_yandex.install

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

File

views_rss_yandex.install
View source
<?php

/**
 * @file
 * (Un)installation functions for Views RSS: Yandex Elements module.
 */

/**
 * Implements hook_install().
 */
function views_rss_yandex_install() {
  \Drupal::cache('data')
    ->invalidateTags(array(
    'views_rss',
  ));
}

/**
 * Implements hook_uninstall().
 */
function views_rss_yandex_uninstall() {
  \Drupal::cache('data')
    ->invalidateTags(array(
    'views_rss',
  ));
}

Functions