function ctools_stylizer_set_settings_cache in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 includes/stylizer.inc \ctools_stylizer_set_settings_cache()
Store changes to a task handler in the object cache.
2 calls to ctools_stylizer_set_settings_cache()
- ctools_stylizer_edit_style_form_default_submit in includes/
stylizer.inc - ctools_stylizer_edit_style_next in includes/
stylizer.inc - Callback generated when the 'next' button is clicked.
File
- includes/
stylizer.inc, line 662 - Create customized CSS and images from palettes created by user input.
Code
function ctools_stylizer_set_settings_cache($name, $settings) {
ctools_include('object-cache');
ctools_object_cache_set('ctools_stylizer_settings', $name, $settings);
}