You are here

function panelizer_panels_cache_clear in Panelizer 7.3

Same name and namespace in other branches
  1. 6 panelizer.module \panelizer_panels_cache_clear()
  2. 7 panelizer.module \panelizer_panels_cache_clear()
  3. 7.2 panelizer.module \panelizer_panels_cache_clear()

Implements hook_panels_cache_clear().

Save all changes made to a display using the Page Manager page cache.

1 call to panelizer_panels_cache_clear()
panelizer_panels_cache_save in ./panelizer.module
Implements hook_panels_cache_save().

File

./panelizer.module, line 1403
The Panelizer module attaches panels to entities, providing default panels and allowing each panel to be configured independently by privileged users.

Code

function panelizer_panels_cache_clear($argument, $cache) {
  ctools_include('object-cache');
  ctools_object_cache_clear('panelizer_display_cache', $argument);
}