You are here

views_rss_dc.install in Views RSS 7.2

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

File

modules/views_rss_dc/views_rss_dc.install
View source
<?php

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

/**
 * Implements hook_install().
 */
function views_rss_dc_install() {
  cache_clear_all('views_rss:', 'cache_views', TRUE);
}

/**
 * Implements hook_uninstall().
 */
function views_rss_dc_uninstall() {
  if (db_table_exists('cache_views')) {
    cache_clear_all('views_rss:', 'cache_views', TRUE);
  }
}

Functions