function fp_clear_cache

7.x misc.inc fp_clear_cache()
6.x misc.inc fp_clear_cache()
5.x misc.inc fp_clear_cache()

Call all modules which implement hook_clear_cache

7 calls to fp_clear_cache()
cli.php in ./cli.php
install.php in ./install.php
This is the initial installation file for FlightPath.
install_perform_install in ./install.php
Actually performs the installation of FlightPath
system.module in modules/system/system.module
system_finished_db_updates_finished in modules/system/system.module

... See full list

File

includes/misc.inc, line 993
This file contains misc functions for FlightPath

Code

function fp_clear_cache() {
  // Find modules which implement hook_clear_cache
  $modules = modules_implement_hook("clear_cache");
  foreach ($modules as $module) {
    call_user_func($module . '_clear_cache');
  }
}