views_rss_yandex.install in Views RSS: Yandex Elements 6
Same filename and directory in other branches
(Un)installation functions for Views RSS: Yandex Elements module.
File
views_rss_yandex.installView source
<?php
/**
* @file
* (Un)installation functions for Views RSS: Yandex Elements module.
*/
/**
* Implements hook_install().
*/
function views_rss_yandex_install() {
cache_clear_all('views_rss:', 'cache_views', TRUE);
}
/**
* Implements hook_uninstall().
*/
function views_rss_yandex_uninstall() {
if (db_table_exists('cache_views')) {
cache_clear_all('views_rss:', 'cache_views', TRUE);
}
}
Functions
Name![]() |
Description |
---|---|
views_rss_yandex_install | Implements hook_install(). |
views_rss_yandex_uninstall | Implements hook_uninstall(). |