devel_cache_clear

Versions
mediamosa-21
devel_cache_clear()

Menu callback; clears all caches, then redirects to the previous page.

Code

sites/all/modules/devel/devel.module, line 1079

<?php
function devel_cache_clear() {
  // If you used to implement our own cache clear hook, implement hook_flush_caches instead. See drupal_flush_all_caches()
  drupal_flush_all_caches();

  drupal_set_message('Cache cleared.');

  drupal_goto();
}
?>