function layouter_cache_set in Layouter - WYSIWYG layout templates 7
Store our cache so that we can retain data from form to form.
1 call to layouter_cache_set()
- layouter_wizard_next in includes/
layouter.inc - Handle the 'next' click on the add/edit pane form wizard.
File
- includes/
layouter.inc, line 72 - Functions for layout processing.
Code
function layouter_cache_set($id, $object) {
ctools_include('object-cache');
ctools_object_cache_set('layouter', $id, $object);
}