You are here

function cache_actions_action_clear_css_js_cache in Cache Actions 7

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

This action clears the css and js cache.

2 string references to 'cache_actions_action_clear_css_js_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 727
This file provides the rules integration for this module.

Code

function cache_actions_action_clear_css_js_cache() {

  // Change query-strings on css/js files to enforce reload for all users.
  _drupal_flush_css_js();
  drupal_clear_js_cache();
  drupal_clear_css_cache();
}