You are here

function panels_cache_get in Panels 5.2

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

Get a display from the cache; this is used if the display is currently being edited, which can be a seriously multi-step process.

7 calls to panels_cache_get()
panels_ajax in includes/display_edit.inc
panels_ajax_add_config in includes/display_edit.inc
Entry point for AJAX: Add pane configuration.
panels_ajax_add_content in includes/display_edit.inc
Entry point for AJAX: 'Add Content' modal form, from which the user selects the type of pane to add.
panels_ajax_cache in includes/display_edit.inc
Entry point for AJAX modal: configure pane
panels_ajax_configure in includes/display_edit.inc
Entry point for AJAX: Edit pane configuration.

... See full list

File

./panels.module, line 296
panels.module Core API for Panels. Provides display editing and rendering capabilities.

Code

function panels_cache_get($did) {
  return panels_common_cache_get('panels', $did);
}