function system_clear_cache

6.x system.module system_clear_cache()
4.x system.module system_clear_cache()
5.x system.module system_clear_cache()

Implements hook_clear_cache Take care of clearing caches managed by this module

File

modules/system/system.module, line 3103

Code

function system_clear_cache() {



  unset($_SESSION ["fp_form_submissions"]);
  unset($_SESSION ["fp_db_host"]);
  unset($_SESSION ["fp_draft_mode"]);
  unset($_SESSION ["fp_simple_degree_plan_cache_for_student"]);
  unset($_SESSION ['fp_alert_count_by_type']);
  unset($_SESSION ['fp_alert_count_by_type_last_check']);

  menu_rebuild_cache();

  system_rebuild_css_js_query_string();
}