You are here

function feeds_crawler_enable in Feeds Crawler 6.2

Same name and namespace in other branches
  1. 7.2 feeds_crawler.install \feeds_crawler_enable()

Implementation of hook_enable().

Clear Feeds' plugin cache so that this plugin shows up.

File

./feeds_crawler.install, line 13
Contains hook_enable to clear Feeds's cache.

Code

function feeds_crawler_enable() {
  cache_clear_all('plugins:feeds:plugins', 'cache');
}