views_rss_yandex-2.0.0/views_rss_yandex.install
views_rss_yandex.install
<?php
/**
* @file
* Installation/uninstallation functions for Views RSS: Yandex Elements module.
*/
use Drupal\Core\Cache\Cache;
/**
* Implements hook_install().
*/
function views_rss_yandex_install() {
Cache::invalidateTags(['views_rss']);
}
/**
* Implements hook_uninstall().
*/
function views_rss_yandex_uninstall() {
Cache::invalidateTags(['views_rss']);
\Drupal::configFactory()->getEditable('core.date_format.rfc_822')->delete();
}
