function drupal_clear_js_cache in Drupal 8
Same name and namespace in other branches
- 6 includes/common.inc \drupal_clear_js_cache()
- 7 includes/common.inc \drupal_clear_js_cache()
Deletes old cached JavaScript files and variables.
Deprecated
in drupal:8.0.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Asset\AssetCollectionOptimizerInterface::deleteAll().
See also
https://www.drupal.org/node/2317841
File
- core/
includes/ common.inc, line 761 - Common functions that many Drupal modules will need to reference.
Code
function drupal_clear_js_cache() {
\Drupal::service('asset.js.collection_optimizer')
->deleteAll();
}