You are here

function cache_actions_action_clear_cache in Cache Actions 7

Same name and namespace in other branches
  1. 6.2 cache_actions.rules.inc \cache_actions_action_clear_cache()
  2. 6 cache_actions.rules.inc \cache_actions_action_clear_cache()
  3. 7.2 cache_actions.rules.inc \cache_actions_action_clear_cache()

This action that clears all cache bins specified.

Parameters

$bins the bins to be cleared:

2 string references to 'cache_actions_action_clear_cache'
cache_actions_rules_action_info in ./cache_actions.rules.inc
Implementation of hook_rules_action_info().
cache_actions_test_rules_defaults in cache_actions_test/cache_actions_test.rules_defaults.inc
Implementation of hook_rules_defaults(). Below are the rules needed for the testing.

File

./cache_actions.rules.inc, line 705
This file provides the rules integration for this module.

Code

function cache_actions_action_clear_cache($bins) {
  $cache_bins = _cache_actions_get_cache_bins();
  foreach ($bins as $bin) {
    if (in_array($bin, $cache_bins)) {
      cache_clear_all('*', $bin, TRUE);
    }
  }
}