Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / date_format_types.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d7/hook/date_format_types.twig b/vendor/chi-teck/drupal-code-generator/templates/d7/hook/date_format_types.twig
new file mode 100644 (file)
index 0000000..3cd5b8d
--- /dev/null
@@ -0,0 +1,11 @@
+/**
+ * Implements hook_date_format_types().
+ */
+function {{ machine_name }}_date_format_types() {
+  // Define the core date format types.
+  return array(
+    'long' => t('Long'),
+    'medium' => t('Medium'),
+    'short' => t('Short'),
+  );
+}