drupal_clear_js_cache

6 common.inc drupal_clear_js_cache()
7 common.inc drupal_clear_js_cache()
8 common.inc drupal_clear_js_cache()

Delete all cached JS files.

2 calls to drupal_clear_js_cache()

1 string reference to 'drupal_clear_js_cache'

File

includes/common.inc, line 2522
Common functions that many Drupal modules will need to reference.

Code

function drupal_clear_js_cache() {
  file_scan_directory(file_create_path('js'), '.*', array('.', '..', 'CVS'), 'file_delete', TRUE);
  variable_set('javascript_parsed', array());
}
Login or register to post comments