views_rss_dc.install in Views RSS 8.2
Same filename and directory in other branches
Installation and Uninstallation functions for Views RSS: DC Elements module.
File
modules/views_rss_dc/views_rss_dc.installView source
<?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(array(
'views_rss',
));
}
/**
* Implements hook_uninstall().
*/
function views_rss_dc_uninstall() {
Cache::invalidateTags(array(
'views_rss',
));
}
Functions
Name | Description |
---|---|
views_rss_dc_install | Implements hook_install(). |
views_rss_dc_uninstall | Implements hook_uninstall(). |