system_clear_cache_submit

Versions
mediamosa-21
system_clear_cache_submit($form, &$form_state)

Submit callback; clear system caches.

Related topics

Code

modules/system/system.admin.inc, line 1693

<?php
function system_clear_cache_submit($form, &$form_state) {
  drupal_flush_all_caches();
  drupal_set_message(t('Caches cleared.'));
}
?>