3cd5b8db09dbbf5e5a535ec79321220777c5a37d
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / date_format_types.twig
1 /**
2  * Implements hook_date_format_types().
3  */
4 function {{ machine_name }}_date_format_types() {
5   // Define the core date format types.
6   return array(
7     'long' => t('Long'),
8     'medium' => t('Medium'),
9     'short' => t('Short'),
10   );
11 }