You are here

function feeds_flush_caches in Feeds 7.2

Implements hook_flush_caches().

Related topics

File

./feeds.module, line 960
Feeds - basic API functions and hook implementations.

Code

function feeds_flush_caches() {

  // The update to add the table needs to have run. Taken from
  // https://www.drupal.org/node/2511858
  include_once DRUPAL_ROOT . '/includes/install.inc';
  if (drupal_get_installed_schema_version('feeds') >= 7212) {
    return array(
      'cache_feeds_http',
    );
  }
  return array();
}