function ctools_stylizer_clear_settings_cache in Chaos Tool Suite (ctools) 7
Same name and namespace in other branches
- 6 includes/stylizer.inc \ctools_stylizer_clear_settings_cache()
Remove an item from the object cache.
3 calls to ctools_stylizer_clear_settings_cache()
- ctools_stylizer_edit_style in includes/
stylizer.inc - Add a new style of the specified type.
- ctools_stylizer_edit_style_cancel in includes/
stylizer.inc - Callback generated when the 'cancel' button is clicked.
- ctools_stylizer_edit_style_finish in includes/
stylizer.inc - Callback generated when the add style process is finished.
File
- includes/
stylizer.inc, line 665 - Create customized CSS and images from palettes created by user input.
Code
function ctools_stylizer_clear_settings_cache($name) {
ctools_include('object-cache');
ctools_object_cache_clear('ctools_stylizer_settings', $name);
}