relation_feeds.install in Relation 7
Relation feeds install functions
File
relation_feeds/relation_feeds.installView 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
Name | Description |
---|---|
relation_feeds_enable | Implements hook_enable(). |