You are here

function gathercontent_import_cache_set in GatherContent 7.3

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

Stores our little cache so that we can retain data from form to form.

Parameters

int $id: Cache ID.

object $object: Object with form values.

1 call to gathercontent_import_cache_set()
gathercontent_import_wizard_next in ./gathercontent.import.inc
Handles the 'next' click on the add/edit pane form wizard.

File

./gathercontent.import.inc, line 109

Code

function gathercontent_import_cache_set($id, $object) {
  ctools_include('object-cache');
  ctools_object_cache_set('gathercontent_import', $id, $object);
}