function system_date_formats_rebuild
Resets the database cache of date formats and saves all new date formats.
1 call to system_date_formats_rebuild()
- system_flush_caches in modules/
system/ system.module - Implements hook_flush_caches().
File
-
modules/
system/ system.module, line 3690
Code
function system_date_formats_rebuild() {
drupal_static_reset('system_get_date_formats');
$date_formats = system_get_date_formats(NULL);
foreach ($date_formats as $type => $formats) {
foreach ($formats as $format => $info) {
system_date_format_save($info);
}
}
// Rebuild configured date formats locale list.
drupal_static_reset('system_date_format_locale');
system_date_format_locale();
_system_date_formats_build();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.