You are here

function _cache_actions_clear_panels_cache in Cache Actions 6

Same name and namespace in other branches
  1. 7.2 cache_actions.rules.inc \_cache_actions_clear_panels_cache()

Clear a specific panel display.

Parameters

display the display object.:

2 calls to _cache_actions_clear_panels_cache()
cache_actions_action_clear_panels_mini_cache in ./cache_actions.rules.inc
Clear the cache of the specified mini panel.
cache_actions_action_clear_panels_page_cache in ./cache_actions.rules.inc
Clear the cache of the specified panel page.

File

./cache_actions.rules.inc, line 157
This file provides the rules integration for this module. @author Fabian Sörqvist <fabian.sorqvist@gmail.com>

Code

function _cache_actions_clear_panels_cache($display) {
  panels_load_include('simple', 'plugins/cache/');
  panels_simple_cache_clear_cache($display);
}