Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / date_formats.twig
1 /**
2  * Implements hook_date_formats().
3  */
4 function {{ machine_name }}_date_formats() {
5   return array(
6     array(
7       'type' => 'mymodule_extra_long',
8       'format' => 'l jS F Y H:i:s e',
9       'locales' => array('en-ie'),
10     ),
11     array(
12       'type' => 'mymodule_extra_long',
13       'format' => 'l jS F Y h:i:sa',
14       'locales' => array('en', 'en-us'),
15     ),
16     array(
17       'type' => 'short',
18       'format' => 'F Y',
19       'locales' => array(),
20     ),
21   );
22 }