function ctools_stylizer_get_settings_cache in Chaos Tool Suite (ctools) 7
Same name and namespace in other branches
- 6 includes/stylizer.inc \ctools_stylizer_get_settings_cache()
Get the cached changes to a given task handler.
1 call to ctools_stylizer_get_settings_cache()
- ctools_stylizer_edit_style in includes/
stylizer.inc - Add a new style of the specified type.
File
- includes/
stylizer.inc, line 649 - Create customized CSS and images from palettes created by user input.
Code
function ctools_stylizer_get_settings_cache($name) {
ctools_include('object-cache');
return ctools_object_cache_get('ctools_stylizer_settings', $name);
}