You are here

feeds_crawler.install in Feeds Crawler 6.2

Same filename and directory in other branches
  1. 7.2 feeds_crawler.install

Contains hook_enable to clear Feeds's cache.

File

feeds_crawler.install
View source
<?php

/**
 * @file
 * Contains hook_enable to clear Feeds's cache.
 */

/**
 * Implementation of hook_enable().
 *
 * Clear Feeds' plugin cache so that this plugin shows up.
 */
function feeds_crawler_enable() {
  cache_clear_all('plugins:feeds:plugins', 'cache');
}

Functions

Namesort descending Description
feeds_crawler_enable Implementation of hook_enable().