views_rss_core.install in Views RSS 8.2
Same filename and directory in other branches
(Un)installation functions for Views RSS: Core Elements module.
File
modules/views_rss_core/views_rss_core.installView 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
Name | Description |
---|---|
views_rss_core_install | Implements hook_install(). |
views_rss_core_uninstall | Implements hook_uninstall(). |