You are here

function gathercontent_import_cache_clear in GatherContent 7.3

Same name and namespace in other branches
  1. 7 gathercontent.module \gathercontent_import_cache_clear()

Clears the wizard cache.

Parameters

int $id: Cache ID.

1 call to gathercontent_import_cache_clear()
gathercontent_import_form in ./gathercontent.import.inc
Multistep form function.

File

./gathercontent.import.inc, line 96

Code

function gathercontent_import_cache_clear($id) {
  ctools_include('object-cache');
  ctools_object_cache_clear('gathercontent_import', $id);
}