You are here

function panels_edit_cache_save in Panels 7.3

Same name and namespace in other branches
  1. 6.3 panels.module \panels_edit_cache_save()

Panels Editor Cache Save.

Method to allow modules to provide their own mechanism to write the cache used in the display editor.

2 calls to panels_edit_cache_save()
panels_renderer_ipe::ajax_save_form in panels_ipe/plugins/display_renderers/panels_renderer_ipe.class.php
AJAX entry point to create the controller form for an IPE.
panels_renderer_ipe::ajax_set_layout in panels_ipe/plugins/display_renderers/panels_renderer_ipe.class.php

File

./panels.module, line 1746
Core functionality for the Panels engine.

Code

function panels_edit_cache_save($cache) {
  $cache_key = $cache->display->cache_key;
  if (strpos($cache_key, ':') !== FALSE) {
    list($module, $argument) = explode(':', $cache_key, 2);
    if (function_exists($module . '_panels_cache_save')) {
      return module_invoke($module, 'panels_cache_save', $argument, $cache);
    }
  }

  // Fall back to our normal method.
  return panels_save_display($cache->display);
}