You are here

function panels_cache_clear in Panels 6.3

Same name and namespace in other branches
  1. 5.2 panels.module \panels_cache_clear()
  2. 6.2 panels.module \panels_cache_clear()
  3. 7.3 panels.module \panels_cache_clear()

Clear a object from the cache; used if the editing is aborted.

Related topics

4 calls to panels_cache_clear()
panels_edit_cache_clear in ./panels.module
Method to allow modules to provide their own mechanism to clear the cache used in the display editor.
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

File

./panels.module, line 1278
panels.module

Code

function panels_cache_clear($obj, $did) {
  ctools_include('object-cache');
  return ctools_object_cache_clear($obj, 'panels_display:' . $did);
}