function feeds_ex_modules_enabled in Feeds extensible parsers 7.2
Same name and namespace in other branches
- 7 feeds_ex.module \feeds_ex_modules_enabled()
Implements hook_modules_enabled().
File
- ./
feeds_ex.module, line 38 - 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');
}
}