function panels_common_cache_clear in Panels 5.2
Clear a display from the cache; used if the editing is aborted.
6 calls to panels_common_cache_clear()
- panels_cache_clear in ./
panels.module - Clear a display from the cache; used if the editing is aborted.
- panels_common_cache_set in ./
panels.module - Save the edited display into the cache.
- panels_mini_context_form_submit in panels_mini/
panels_mini.module - Process submission of the mini panel edit form.
- panels_node_context_form_submit in panels_node/
panels_node.module - Process submission of the panel node edit form.
- panels_page_context_form_submit in panels_page/
panels_page.admin.inc - Process submission of the panel page edit form.
File
- ./
panels.module, line 347 - panels.module Core API for Panels. Provides display editing and rendering capabilities.
Code
function panels_common_cache_clear($obj, $did) {
db_query("DELETE FROM {panels_object_cache} WHERE sid = '%s' AND obj = '%s' AND did = %d", session_id(), $obj, $did);
}