function system_clear_cache
Search API
7.x system.module | 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 2496
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"]);
menu_rebuild_cache();
system_rebuild_css_js_query_string();
}