hook_date_formats_alter

Versions
7
hook_date_formats_alter(&$formats)

Alters date types and 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

Code

modules/system/system.api.php, line 2680

<?php
function hook_date_formats_alter(&$formats) {
  foreach ($formats as $id => $format) {
    $formats[$id]['locales'][] = 'en-ca';
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.