Skip to content
Snippets Groups Projects
Commit dc744973 authored by Max's avatar Max Committed by Oleksandr Kuzava
Browse files

Issue #3315250: Add support for core daterange field type

parent b77dfae5
No related branches found
No related tags found
1 merge request!35Issue #3315250: Add support for core daterange field type
...@@ -348,6 +348,7 @@ class ContentExporter implements ContentExporterInterface { ...@@ -348,6 +348,7 @@ class ContentExporter implements ContentExporterInterface {
switch ($field_type) { switch ($field_type) {
case 'boolean': case 'boolean':
case 'address': case 'address':
case 'daterange':
case 'datetime': case 'datetime':
case 'email': case 'email':
case 'geolocation': case 'geolocation':
......
...@@ -242,6 +242,7 @@ class ContentImporter implements ContentImporterInterface { ...@@ -242,6 +242,7 @@ class ContentImporter implements ContentImporterInterface {
switch ($field_definition->getType()) { switch ($field_definition->getType()) {
case 'boolean': case 'boolean':
case 'address': case 'address':
case 'daterange':
case 'datetime': case 'datetime':
case 'email': case 'email':
case 'geolocation': case 'geolocation':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment