function panels_cache_clear in Panels 5.2
Same name and namespace in other branches
- 6.3 panels.module \panels_cache_clear()
- 6.2 panels.module \panels_cache_clear()
- 7.3 panels.module \panels_cache_clear()
Clear a display from the cache; used if the editing is aborted.
2 calls to panels_cache_clear()
- panels_edit_display_submit in includes/
display_edit.inc - Handle form submission of the display content editor.
- _panels_edit in includes/
display_edit.inc - Handle calling and processing of the form for editing display content.
File
- ./
panels.module, line 310 - panels.module Core API for Panels. Provides display editing and rendering capabilities.
Code
function panels_cache_clear($did) {
return panels_common_cache_clear('panels', $did);
}