You are here

function feeds_ex_modules_enabled in Feeds extensible parsers 7

Same name and namespace in other branches
  1. 7.2 feeds_ex.module \feeds_ex_modules_enabled()

Implements hook_modules_enabled().

File

./feeds_ex.module, line 43
A Feeds framework used to create extensible parsers.

Code

function feeds_ex_modules_enabled(array $modules) {
  if (in_array('querypath', $modules)) {
    cache_clear_all('plugins:feeds:plugins', 'cache');
  }
}