You are here

function relation_feeds_enable in Relation 7

Implements hook_enable().

File

relation_feeds/relation_feeds.install, line 11
Relation feeds install functions

Code

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();
}