You are here

relation_feeds.install in Relation 7

Relation feeds install functions

File

relation_feeds/relation_feeds.install
View source
<?php

/**
 * @file
 * Relation feeds install functions
 */

/**
 * Implements hook_enable().
 */
function relation_feeds_enable() {

  // Clear cache so plugins provided by this module are properly discovered.
  cache_clear_all('plugins:feeds:plugins', 'cache');

  // Reset static cache as well, this is required to make tests work.
  ctools_get_plugins_reset();
}

Functions

Namesort descending Description
relation_feeds_enable Implements hook_enable().