function gathercontent_import_cache_clear in GatherContent 7
Same name and namespace in other branches
- 7.3 gathercontent.import.inc \gathercontent_import_cache_clear()
Clears CTools' multistep form cache.
1 call to gathercontent_import_cache_clear()
- gathercontent_import in ./
gathercontent.module - Import wizard, built with CTools multistep form wizard.
File
- ./
gathercontent.module, line 149 - Imports pages from GatherContent (http://gathercontent.com/) into Drupal as nodes.
Code
function gathercontent_import_cache_clear($name) {
ctools_include('object-cache');
ctools_object_cache_clear('gathercontent_import', $name);
}