function panels_cache_clear in Panels 7.3
Same name and namespace in other branches
- 5.2 panels.module \panels_cache_clear()
- 6.3 panels.module \panels_cache_clear()
- 6.2 panels.module \panels_cache_clear()
Clear a object from the cache; used if the editing is aborted.
4 calls to panels_cache_clear()
- panels_edit_cache_clear in ./
panels.module - Panels Editor Cache Clear.
- panels_edit_cache_get_default in ./
panels.module - Create the default cache for editing panel displays.
- panels_layouts_ui::edit_form in plugins/
export_ui/ panels_layouts_ui.class.php - Provide the actual editing form.
- panels_renderer_editor::edit in plugins/
display_renderers/ panels_renderer_editor.class.php - Display edit rendering.
File
- ./
panels.module, line 1678 - Core functionality for the Panels engine.
Code
function panels_cache_clear($obj, $did) {
ctools_include('object-cache');
return ctools_object_cache_clear($obj, 'panels_display:' . $did);
}