You are here

function date_api_flush_caches in Date 6.2

Implementation of hook_flush_caches().

File

./date_api.module, line 1945
This module will make the date API available to other modules. Designed to provide a light but flexible assortment of functions and constants, with more functionality in additional files that are not loaded unless other modules specifically include them.

Code

function date_api_flush_caches() {

  // Rebuild list of date formats.
  date_formats_rebuild();
  return array();
}