| 7 system.api.php | hook_date_formats_alter(&$formats) |
| 8 system.api.php | hook_date_formats_alter(&$formats) |
Alter date formats declared by another module.
Called by _system_date_format_types_build() to allow modules to alter the return values from implementations of hook_date_formats().
Related topics
1 invocation of hook_date_formats_alter()
File
- modules/
system/ system.api.php, line 4029 - Hooks provided by Drupal core and the System module.
Code
function hook_date_formats_alter(&$formats) {
foreach ($formats as $id => $format) {
$formats[$id]['locales'][] = 'en-ca';
}
}
Login or register to post comments