Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / date_formats_alter.twig
1 /**
2  * Implements hook_date_formats_alter().
3  */
4 function {{ machine_name }}_date_formats_alter(&$formats) {
5   foreach ($formats as $id => $format) {
6     $formats[$id]['locales'][] = 'en-ca';
7   }
8 }