diff --git a/src/bundle/ApiLoader/Factory.php b/src/bundle/ApiLoader/Factory.php
index 13bdfdbfc..5180ea3ad 100644
--- a/src/bundle/ApiLoader/Factory.php
+++ b/src/bundle/ApiLoader/Factory.php
@@ -48,7 +48,7 @@ public function getMediaFieldTypeProcessor(): MediaProcessor
}
/**
- * Factory for ezpublish_rest.field_type_processor.ezimage.
+ * Factory for ezpublish_rest.field_type_processor.ibexa_image.
*
* @param \Symfony\Component\Routing\RouterInterface $router
*
@@ -80,7 +80,7 @@ public function getImageAssetFieldTypeProcessor(
return new ImageAssetFieldTypeProcessor(
$router,
$this->repository->getContentService(),
- $this->configResolver->getParameter('fieldtypes.ezimageasset.mappings'),
+ $this->configResolver->getParameter('fieldtypes.ibexa_image_asset.mappings'),
$variationsIdentifiers
);
}
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/POST/Content.json.example b/src/bundle/Resources/api_platform/examples/content/objects/POST/Content.json.example
index 5e8bd68f3..2451bdbab 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/POST/Content.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/POST/Content.json.example
@@ -59,28 +59,28 @@
"id": 488,
"fieldDefinitionIdentifier": "title",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "draft article"
},
{
"id": 489,
"fieldDefinitionIdentifier": "short_title",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": null
},
{
"id": 490,
"fieldDefinitionIdentifier": "author",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezauthor",
+ "fieldTypeIdentifier": "ibexa_author",
"fieldValue": []
},
{
"id": 491,
"fieldDefinitionIdentifier": "intro",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
@@ -90,7 +90,7 @@
"id": 492,
"fieldDefinitionIdentifier": "body",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
@@ -100,14 +100,14 @@
"id": 493,
"fieldDefinitionIdentifier": "enable_comments",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezboolean",
+ "fieldTypeIdentifier": "ibexa_boolean",
"fieldValue": false
},
{
"id": 494,
"fieldDefinitionIdentifier": "image",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezobjectrelation",
+ "fieldTypeIdentifier": "ibexa_object_relation",
"fieldValue": {
"destinationContentId": null
}
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/POST/Content.xml.example b/src/bundle/Resources/api_platform/examples/content/objects/POST/Content.xml.example
index 35f5cbb16..b1e1dbcd3 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/POST/Content.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/POST/Content.xml.example
@@ -30,28 +30,28 @@
481
title
eng-GB
- ezstring
+ ibexa_string
draft article
482
short_title
eng-GB
- ezstring
+ ibexa_string
483
author
eng-GB
- ezauthor
+ ibexa_author
484
intro
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ezxhtml="http://ibexa.co/xmlns/dxp/docbook/xhtml" xmlns:ezcustom="http://ibexa.co/xmlns/dxp/docbook/custom" version="5.0-variant ezpublish-1.0"><para>draft draft</para></section>
@@ -65,7 +65,7 @@
485
body
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ezxhtml="http://ibexa.co/xmlns/dxp/docbook/xhtml" xmlns:ezcustom="http://ibexa.co/xmlns/dxp/docbook/custom" version="5.0-variant ezpublish-1.0"><para>draft draft draft</para></section>
@@ -79,14 +79,14 @@
486
enable_comments
eng-GB
- ezboolean
+ ibexa_boolean
false
487
image
eng-GB
- ezobjectrelation
+ ibexa_object_relation
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/POST/ContentCreate.json.example b/src/bundle/Resources/api_platform/examples/content/objects/POST/ContentCreate.json.example
index 97f903c01..b1d4e379a 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/POST/ContentCreate.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/POST/ContentCreate.json.example
@@ -23,13 +23,13 @@
{
"fieldDefinitionIdentifier": "title",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "draft article"
},
{
"fieldDefinitionIdentifier": "intro",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue":
{
"xml": ""
@@ -38,7 +38,7 @@
{
"fieldDefinitionIdentifier": "body",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": ""
}
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/content_id/GET/Content.json.example b/src/bundle/Resources/api_platform/examples/content/objects/content_id/GET/Content.json.example
index 0384cebbc..5c38cbb2d 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/content_id/GET/Content.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/content_id/GET/Content.json.example
@@ -59,21 +59,21 @@
"id": 249,
"fieldDefinitionIdentifier": "name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Forms"
},
{
"id": 250,
"fieldDefinitionIdentifier": "short_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": null
},
{
"id": 251,
"fieldDefinitionIdentifier": "short_description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
@@ -83,7 +83,7 @@
"id": 252,
"fieldDefinitionIdentifier": "description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/content_id/GET/Content.xml.example b/src/bundle/Resources/api_platform/examples/content/objects/content_id/GET/Content.xml.example
index bf3dcdccb..f6468fe4a 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/content_id/GET/Content.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/content_id/GET/Content.xml.example
@@ -30,21 +30,21 @@
249
name
eng-GB
- ezstring
+ ibexa_string
Forms
250
short_name
eng-GB
- ezstring
+ ibexa_string
251
short_description
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>
@@ -58,7 +58,7 @@
252
description
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/COPY/Version.json.example b/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/COPY/Version.json.example
index 434f069a2..50fcf485e 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/COPY/Version.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/COPY/Version.json.example
@@ -41,21 +41,21 @@
"id": 477,
"fieldDefinitionIdentifier": "name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Features"
},
{
"id": 478,
"fieldDefinitionIdentifier": "short_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": null
},
{
"id": 479,
"fieldDefinitionIdentifier": "short_description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
@@ -65,7 +65,7 @@
"id": 480,
"fieldDefinitionIdentifier": "description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/COPY/Version.xml.example b/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/COPY/Version.xml.example
index d6cb4c486..6aeb209ce 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/COPY/Version.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/COPY/Version.xml.example
@@ -24,21 +24,21 @@
477
name
eng-GB
- ezstring
+ ibexa_string
Features
478
short_name
eng-GB
- ezstring
+ ibexa_string
479
short_description
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>
@@ -52,7 +52,7 @@
480
description
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/GET/Version.json.example b/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/GET/Version.json.example
index a37da599d..0fcc4ccf7 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/GET/Version.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/GET/Version.json.example
@@ -41,21 +41,21 @@
"id": 477,
"fieldDefinitionIdentifier": "name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Features"
},
{
"id": 478,
"fieldDefinitionIdentifier": "short_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": null
},
{
"id": 479,
"fieldDefinitionIdentifier": "short_description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
@@ -65,7 +65,7 @@
"id": 480,
"fieldDefinitionIdentifier": "description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/GET/Version.xml.example b/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/GET/Version.xml.example
index 585f91f91..8e9585731 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/GET/Version.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/content_id/currentversion/GET/Version.xml.example
@@ -24,21 +24,21 @@
477
name
eng-GB
- ezstring
+ ibexa_string
Features
478
short_name
eng-GB
- ezstring
+ ibexa_string
479
short_description
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>
@@ -52,7 +52,7 @@
480
description
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/COPY/Version.json.example b/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/COPY/Version.json.example
index 580dc2315..fed09fb45 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/COPY/Version.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/COPY/Version.json.example
@@ -41,21 +41,21 @@
"id": 477,
"fieldDefinitionIdentifier": "name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Features"
},
{
"id": 478,
"fieldDefinitionIdentifier": "short_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": null
},
{
"id": 479,
"fieldDefinitionIdentifier": "short_description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
@@ -65,7 +65,7 @@
"id": 480,
"fieldDefinitionIdentifier": "description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/COPY/Version.xml.example b/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/COPY/Version.xml.example
index b04721156..4d738d4b2 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/COPY/Version.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/COPY/Version.xml.example
@@ -24,21 +24,21 @@
477
name
eng-GB
- ezstring
+ ibexa_string
Features
478
short_name
eng-GB
- ezstring
+ ibexa_string
479
short_description
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>
@@ -52,7 +52,7 @@
480
description
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/GET/Version.json.example b/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/GET/Version.json.example
index c6510ea95..3cc81f0f9 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/GET/Version.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/GET/Version.json.example
@@ -41,21 +41,21 @@
"id": 477,
"fieldDefinitionIdentifier": "name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Features"
},
{
"id": 478,
"fieldDefinitionIdentifier": "short_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": null
},
{
"id": 479,
"fieldDefinitionIdentifier": "short_description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
@@ -65,7 +65,7 @@
"id": 480,
"fieldDefinitionIdentifier": "description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezrichtext",
+ "fieldTypeIdentifier": "ibexa_richtext",
"fieldValue": {
"xml": "\n\n",
"xhtml5edit": "\n\n"
diff --git a/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/GET/Version.xml.example b/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/GET/Version.xml.example
index 9286adb0c..057d27b9c 100644
--- a/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/GET/Version.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/objects/content_id/versions/version_no/GET/Version.xml.example
@@ -24,21 +24,21 @@
477
name
eng-GB
- ezstring
+ ibexa_string
Features
478
short_name
eng-GB
- ezstring
+ ibexa_string
479
short_description
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>
@@ -52,7 +52,7 @@
480
description
eng-GB
- ezrichtext
+ ibexa_richtext
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>
diff --git a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/GET/ContentTypeGroup.json.example b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/GET/ContentTypeGroup.json.example
index cfcff3bb4..4669ec3ae 100644
--- a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/GET/ContentTypeGroup.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/GET/ContentTypeGroup.json.example
@@ -60,7 +60,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/1",
"id": 1,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -97,7 +97,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/152",
"id": 152,
"identifier": "short_title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -134,7 +134,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/153",
"id": 153,
"identifier": "author",
- "fieldType": "ezauthor",
+ "fieldType": "ibexa_author",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -168,7 +168,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/120",
"id": 120,
"identifier": "intro",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -203,7 +203,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/121",
"id": 121,
"identifier": "body",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 5,
"isTranslatable": true,
@@ -238,7 +238,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/123",
"id": 123,
"identifier": "enable_comments",
- "fieldType": "ezboolean",
+ "fieldType": "ibexa_boolean",
"fieldGroup": "",
"position": 6,
"isTranslatable": false,
@@ -270,7 +270,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/195",
"id": 195,
"identifier": "image",
- "fieldType": "ezimageasset",
+ "fieldType": "ibexa_image_asset",
"fieldGroup": "content",
"position": 7,
"isTranslatable": false,
@@ -361,7 +361,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/197",
"id": 197,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -398,7 +398,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/198",
"id": 198,
"identifier": "short_title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -435,7 +435,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/199",
"id": 199,
"identifier": "author",
- "fieldType": "ezauthor",
+ "fieldType": "ibexa_author",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -469,7 +469,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/200",
"id": 200,
"identifier": "intro",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -504,7 +504,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/201",
"id": 201,
"identifier": "body",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 5,
"isTranslatable": true,
@@ -539,7 +539,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/202",
"id": 202,
"identifier": "enable_comments",
- "fieldType": "ezboolean",
+ "fieldType": "ibexa_boolean",
"fieldGroup": "",
"position": 6,
"isTranslatable": false,
@@ -571,7 +571,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/203",
"id": 203,
"identifier": "image",
- "fieldType": "ezimageasset",
+ "fieldType": "ibexa_image_asset",
"fieldGroup": "content",
"position": 7,
"isTranslatable": false,
@@ -662,7 +662,7 @@
"_href": "/api/ibexa/v2/content/types/44/fieldDefinitions/190",
"id": 190,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 1,
"isTranslatable": true,
@@ -699,7 +699,7 @@
"_href": "/api/ibexa/v2/content/types/44/fieldDefinitions/191",
"id": 191,
"identifier": "photo",
- "fieldType": "ezimageasset",
+ "fieldType": "ibexa_image_asset",
"fieldGroup": "content",
"position": 2,
"isTranslatable": true,
@@ -735,7 +735,7 @@
"_href": "/api/ibexa/v2/content/types/44/fieldDefinitions/192",
"id": 192,
"identifier": "description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "content",
"position": 3,
"isTranslatable": true,
@@ -820,7 +820,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/4",
"id": 4,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -852,7 +852,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/155",
"id": 155,
"identifier": "short_name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -884,7 +884,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/119",
"id": 119,
"identifier": "short_description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -914,7 +914,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/156",
"id": 156,
"identifier": "description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -999,7 +999,7 @@
"_href": "/api/ibexa/v2/content/types/55/fieldDefinitions/210",
"id": 210,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -1036,7 +1036,7 @@
"_href": "/api/ibexa/v2/content/types/55/fieldDefinitions/211",
"id": 211,
"identifier": "short_name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -1073,7 +1073,7 @@
"_href": "/api/ibexa/v2/content/types/55/fieldDefinitions/212",
"id": 212,
"identifier": "short_description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -1108,7 +1108,7 @@
"_href": "/api/ibexa/v2/content/types/55/fieldDefinitions/213",
"id": 213,
"identifier": "description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -1193,7 +1193,7 @@
"_href": "/api/ibexa/v2/content/types/43/fieldDefinitions/188",
"id": 188,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 1,
"isTranslatable": true,
@@ -1225,7 +1225,7 @@
"_href": "/api/ibexa/v2/content/types/43/fieldDefinitions/189",
"id": 189,
"identifier": "form",
- "fieldType": "ezform",
+ "fieldType": "ibexa_form",
"fieldGroup": "content",
"position": 2,
"isTranslatable": true,
@@ -1312,7 +1312,7 @@
"_href": "/api/ibexa/v2/content/types/45/fieldDefinitions/193",
"id": 193,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 1,
"isTranslatable": true,
@@ -1349,7 +1349,7 @@
"_href": "/api/ibexa/v2/content/types/45/fieldDefinitions/194",
"id": 194,
"identifier": "body",
- "fieldType": "eztext",
+ "fieldType": "ibexa_text",
"fieldGroup": "content",
"position": 2,
"isTranslatable": true,
@@ -1383,7 +1383,7 @@
"_href": "/api/ibexa/v2/content/types/45/fieldDefinitions/204",
"id": 204,
"identifier": "richtext",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "content",
"position": 3,
"isTranslatable": true,
@@ -1473,7 +1473,7 @@
"_href": "/api/ibexa/v2/content/types/42/fieldDefinitions/185",
"id": 185,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 10,
"isTranslatable": true,
@@ -1510,7 +1510,7 @@
"_href": "/api/ibexa/v2/content/types/42/fieldDefinitions/186",
"id": 186,
"identifier": "description",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 20,
"isTranslatable": true,
@@ -1547,7 +1547,7 @@
"_href": "/api/ibexa/v2/content/types/42/fieldDefinitions/187",
"id": 187,
"identifier": "page",
- "fieldType": "ezlandingpage",
+ "fieldType": "ibexa_landing_page",
"fieldGroup": "content",
"position": 30,
"isTranslatable": true,
diff --git a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/GET/ContentTypeGroup.xml.example b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/GET/ContentTypeGroup.xml.example
index e8def2575..c488e0b44 100644
--- a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/GET/ContentTypeGroup.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/GET/ContentTypeGroup.xml.example
@@ -28,7 +28,7 @@
1
title
- ezstring
+ ibexa_string
1
true
@@ -53,7 +53,7 @@
152
short_title
- ezstring
+ ibexa_string
2
true
@@ -78,7 +78,7 @@
153
author
- ezauthor
+ ibexa_author
3
true
@@ -100,7 +100,7 @@
120
intro
- ezrichtext
+ ibexa_richtext
4
true
@@ -127,7 +127,7 @@
121
body
- ezrichtext
+ ibexa_richtext
5
true
@@ -154,7 +154,7 @@
123
enable_comments
- ezboolean
+ ibexa_boolean
6
false
@@ -174,7 +174,7 @@
195
image
- ezimageasset
+ ibexa_image_asset
content
7
false
@@ -225,7 +225,7 @@
197
title
- ezstring
+ ibexa_string
1
true
@@ -250,7 +250,7 @@
198
short_title
- ezstring
+ ibexa_string
2
true
@@ -275,7 +275,7 @@
199
author
- ezauthor
+ ibexa_author
3
true
@@ -297,7 +297,7 @@
200
intro
- ezrichtext
+ ibexa_richtext
4
true
@@ -324,7 +324,7 @@
201
body
- ezrichtext
+ ibexa_richtext
5
true
@@ -351,7 +351,7 @@
202
enable_comments
- ezboolean
+ ibexa_boolean
6
false
@@ -371,7 +371,7 @@
203
image
- ezimageasset
+ ibexa_image_asset
content
7
false
@@ -422,7 +422,7 @@
190
name
- ezstring
+ ibexa_string
content
1
true
@@ -447,7 +447,7 @@
191
photo
- ezimageasset
+ ibexa_image_asset
content
2
true
@@ -471,7 +471,7 @@
192
description
- ezrichtext
+ ibexa_richtext
content
3
true
@@ -523,7 +523,7 @@
4
name
- ezstring
+ ibexa_string
1
true
@@ -546,7 +546,7 @@
155
short_name
- ezstring
+ ibexa_string
2
true
@@ -569,7 +569,7 @@
119
short_description
- ezrichtext
+ ibexa_richtext
3
true
@@ -594,7 +594,7 @@
156
description
- ezrichtext
+ ibexa_richtext
4
true
@@ -646,7 +646,7 @@
210
name
- ezstring
+ ibexa_string
1
true
@@ -671,7 +671,7 @@
211
short_name
- ezstring
+ ibexa_string
2
true
@@ -696,7 +696,7 @@
212
short_description
- ezrichtext
+ ibexa_richtext
3
true
@@ -723,7 +723,7 @@
213
description
- ezrichtext
+ ibexa_richtext
4
true
@@ -775,7 +775,7 @@
188
title
- ezstring
+ ibexa_string
content
1
true
@@ -798,7 +798,7 @@
189
form
- ezform
+ ibexa_form
content
2
true
@@ -848,7 +848,7 @@
193
title
- ezstring
+ ibexa_string
content
1
true
@@ -873,7 +873,7 @@
194
body
- eztext
+ ibexa_text
content
2
true
@@ -895,7 +895,7 @@
204
richtext
- ezrichtext
+ ibexa_richtext
content
3
true
@@ -949,7 +949,7 @@
185
name
- ezstring
+ ibexa_string
content
10
true
@@ -974,7 +974,7 @@
186
description
- ezstring
+ ibexa_string
content
20
true
@@ -999,7 +999,7 @@
187
page
- ezlandingpage
+ ibexa_landing_page
content
30
true
diff --git a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/GET/ContentTypeInfoList.json.example b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/GET/ContentTypeInfoList.json.example
index c7c2076fb..747d71756 100644
--- a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/GET/ContentTypeInfoList.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/GET/ContentTypeInfoList.json.example
@@ -60,7 +60,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/1",
"id": 1,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -97,7 +97,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/152",
"id": 152,
"identifier": "short_title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -134,7 +134,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/153",
"id": 153,
"identifier": "author",
- "fieldType": "ezauthor",
+ "fieldType": "ibexa_author",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -168,7 +168,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/120",
"id": 120,
"identifier": "intro",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -203,7 +203,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/121",
"id": 121,
"identifier": "body",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 5,
"isTranslatable": true,
@@ -238,7 +238,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/123",
"id": 123,
"identifier": "enable_comments",
- "fieldType": "ezboolean",
+ "fieldType": "ibexa_boolean",
"fieldGroup": "",
"position": 6,
"isTranslatable": false,
@@ -270,7 +270,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/195",
"id": 195,
"identifier": "image",
- "fieldType": "ezimageasset",
+ "fieldType": "ibexa_image_asset",
"fieldGroup": "content",
"position": 7,
"isTranslatable": false,
@@ -361,7 +361,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/197",
"id": 197,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -398,7 +398,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/198",
"id": 198,
"identifier": "short_title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -435,7 +435,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/199",
"id": 199,
"identifier": "author",
- "fieldType": "ezauthor",
+ "fieldType": "ibexa_author",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -469,7 +469,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/200",
"id": 200,
"identifier": "intro",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -504,7 +504,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/201",
"id": 201,
"identifier": "body",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 5,
"isTranslatable": true,
@@ -539,7 +539,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/202",
"id": 202,
"identifier": "enable_comments",
- "fieldType": "ezboolean",
+ "fieldType": "ibexa_boolean",
"fieldGroup": "",
"position": 6,
"isTranslatable": false,
@@ -571,7 +571,7 @@
"_href": "/api/ibexa/v2/content/types/50/fieldDefinitions/203",
"id": 203,
"identifier": "image",
- "fieldType": "ezimageasset",
+ "fieldType": "ibexa_image_asset",
"fieldGroup": "content",
"position": 7,
"isTranslatable": false,
@@ -662,7 +662,7 @@
"_href": "/api/ibexa/v2/content/types/44/fieldDefinitions/190",
"id": 190,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 1,
"isTranslatable": true,
@@ -699,7 +699,7 @@
"_href": "/api/ibexa/v2/content/types/44/fieldDefinitions/191",
"id": 191,
"identifier": "photo",
- "fieldType": "ezimageasset",
+ "fieldType": "ibexa_image_asset",
"fieldGroup": "content",
"position": 2,
"isTranslatable": true,
@@ -735,7 +735,7 @@
"_href": "/api/ibexa/v2/content/types/44/fieldDefinitions/192",
"id": 192,
"identifier": "description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "content",
"position": 3,
"isTranslatable": true,
@@ -820,7 +820,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/4",
"id": 4,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -852,7 +852,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/155",
"id": 155,
"identifier": "short_name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -884,7 +884,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/119",
"id": 119,
"identifier": "short_description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -914,7 +914,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/156",
"id": 156,
"identifier": "description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -994,7 +994,7 @@
"_href": "/api/ibexa/v2/content/types/43/fieldDefinitions/188",
"id": 188,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 1,
"isTranslatable": true,
@@ -1026,7 +1026,7 @@
"_href": "/api/ibexa/v2/content/types/43/fieldDefinitions/189",
"id": 189,
"identifier": "form",
- "fieldType": "ezform",
+ "fieldType": "ibexa_form",
"fieldGroup": "content",
"position": 2,
"isTranslatable": true,
@@ -1113,7 +1113,7 @@
"_href": "/api/ibexa/v2/content/types/45/fieldDefinitions/193",
"id": 193,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 1,
"isTranslatable": true,
@@ -1150,7 +1150,7 @@
"_href": "/api/ibexa/v2/content/types/45/fieldDefinitions/194",
"id": 194,
"identifier": "body",
- "fieldType": "eztext",
+ "fieldType": "ibexa_text",
"fieldGroup": "content",
"position": 2,
"isTranslatable": true,
@@ -1184,7 +1184,7 @@
"_href": "/api/ibexa/v2/content/types/45/fieldDefinitions/204",
"id": 204,
"identifier": "richtext",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "content",
"position": 3,
"isTranslatable": true,
@@ -1274,7 +1274,7 @@
"_href": "/api/ibexa/v2/content/types/42/fieldDefinitions/185",
"id": 185,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 10,
"isTranslatable": true,
@@ -1311,7 +1311,7 @@
"_href": "/api/ibexa/v2/content/types/42/fieldDefinitions/186",
"id": 186,
"identifier": "description",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 20,
"isTranslatable": true,
@@ -1348,7 +1348,7 @@
"_href": "/api/ibexa/v2/content/types/42/fieldDefinitions/187",
"id": 187,
"identifier": "page",
- "fieldType": "ezlandingpage",
+ "fieldType": "ibexa_landing_page",
"fieldGroup": "content",
"position": 30,
"isTranslatable": true,
@@ -1443,7 +1443,7 @@
"_href": "/api/ibexa/v2/content/types/4/fieldDefinitions/8",
"id": 8,
"identifier": "first_name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -1475,7 +1475,7 @@
"_href": "/api/ibexa/v2/content/types/4/fieldDefinitions/9",
"id": 9,
"identifier": "last_name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -1507,7 +1507,7 @@
"_href": "/api/ibexa/v2/content/types/4/fieldDefinitions/12",
"id": 12,
"identifier": "user_account",
- "fieldType": "ezuser",
+ "fieldType": "ibexa_user",
"fieldGroup": "",
"position": 3,
"isTranslatable": false,
@@ -1548,7 +1548,7 @@
"_href": "/api/ibexa/v2/content/types/4/fieldDefinitions/179",
"id": 179,
"identifier": "signature",
- "fieldType": "eztext",
+ "fieldType": "ibexa_text",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -1577,7 +1577,7 @@
"_href": "/api/ibexa/v2/content/types/4/fieldDefinitions/180",
"id": 180,
"identifier": "image",
- "fieldType": "ezimage",
+ "fieldType": "ibexa_image",
"fieldGroup": "",
"position": 5,
"isTranslatable": true,
@@ -1658,7 +1658,7 @@
"_href": "/api/ibexa/v2/content/types/3/fieldDefinitions/6",
"id": 6,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -1690,7 +1690,7 @@
"_href": "/api/ibexa/v2/content/types/3/fieldDefinitions/7",
"id": 7,
"identifier": "description",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -1772,7 +1772,7 @@
"_href": "/api/ibexa/v2/content/types/12/fieldDefinitions/146",
"id": 146,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -1804,7 +1804,7 @@
"_href": "/api/ibexa/v2/content/types/12/fieldDefinitions/147",
"id": 147,
"identifier": "description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -1834,7 +1834,7 @@
"_href": "/api/ibexa/v2/content/types/12/fieldDefinitions/148",
"id": 148,
"identifier": "file",
- "fieldType": "ezbinaryfile",
+ "fieldType": "ibexa_author",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -1915,7 +1915,7 @@
"_href": "/api/ibexa/v2/content/types/5/fieldDefinitions/116",
"id": 116,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -1947,7 +1947,7 @@
"_href": "/api/ibexa/v2/content/types/5/fieldDefinitions/117",
"id": 117,
"identifier": "caption",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -1977,7 +1977,7 @@
"_href": "/api/ibexa/v2/content/types/5/fieldDefinitions/118",
"id": 118,
"identifier": "image",
- "fieldType": "ezimage",
+ "fieldType": "ibexa_image",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
diff --git a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/GET/ContentTypeList.xml.example b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/GET/ContentTypeList.xml.example
index b33671c66..ad5b61dc5 100644
--- a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/GET/ContentTypeList.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/GET/ContentTypeList.xml.example
@@ -26,7 +26,7 @@
1
title
- ezstring
+ ibexa_string
1
true
@@ -48,7 +48,7 @@
152
short_title
- ezstring
+ ibexa_string
2
true
@@ -70,7 +70,7 @@
153
author
- ezauthor
+ ibexa_author
3
true
@@ -90,7 +90,7 @@
120
intro
- ezrichtext
+ ibexa_richtext
4
true
@@ -115,7 +115,7 @@
121
body
- ezrichtext
+ ibexa_richtext
5
true
@@ -140,7 +140,7 @@
123
enable_comments
- ezboolean
+ ibexa_boolean
6
false
@@ -158,7 +158,7 @@
154
image
- ezobjectrelation
+ ibexa_object_relation
7
true
diff --git a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentType.xml.example b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentType.xml.example
index beac49c71..454a472f7 100644
--- a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentType.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentType.xml.example
@@ -27,7 +27,7 @@
223
title
- ezstring
+ ibexa_string
content
1
true
diff --git a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentTypeCreate.json.example b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentTypeCreate.json.example
index 175bf7100..065d19ddd 100644
--- a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentTypeCreate.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentTypeCreate.json.example
@@ -29,7 +29,7 @@
"FieldDefinition": [
{
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 1,
"isTranslatable": true,
@@ -56,7 +56,7 @@
},
{
"identifier": "summary",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "content",
"position": 2,
"isTranslatable": true,
diff --git a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentTypeCreate.xml.example b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentTypeCreate.xml.example
index 261e7a475..7b7aa117a 100644
--- a/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentTypeCreate.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/typegroups/content_type_group_id/types/POST/ContentTypeCreate.xml.example
@@ -18,7 +18,7 @@
title
- ezstring
+ ibexa_string
content
1
true
diff --git a/src/bundle/Resources/api_platform/examples/content/types/GET/ContentTypeInfoList.json.example b/src/bundle/Resources/api_platform/examples/content/types/GET/ContentTypeInfoList.json.example
index 31c1f62d1..2b980f803 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/GET/ContentTypeInfoList.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/GET/ContentTypeInfoList.json.example
@@ -55,7 +55,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/1",
"id": 1,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -87,7 +87,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/152",
"id": 152,
"identifier": "short_title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -119,7 +119,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/153",
"id": 153,
"identifier": "author",
- "fieldType": "ezauthor",
+ "fieldType": "ibexa_author",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -148,7 +148,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/120",
"id": 120,
"identifier": "intro",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -178,7 +178,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/121",
"id": 121,
"identifier": "body",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 5,
"isTranslatable": true,
@@ -208,7 +208,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/123",
"id": 123,
"identifier": "enable_comments",
- "fieldType": "ezboolean",
+ "fieldType": "ibexa_boolean",
"fieldGroup": "",
"position": 6,
"isTranslatable": false,
@@ -235,7 +235,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/154",
"id": 154,
"identifier": "image",
- "fieldType": "ezobjectrelation",
+ "fieldType": "ibexa_object_relation",
"fieldGroup": "",
"position": 7,
"isTranslatable": true,
@@ -318,7 +318,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/4",
"id": 4,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -350,7 +350,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/155",
"id": 155,
"identifier": "short_name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -382,7 +382,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/119",
"id": 119,
"identifier": "short_description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -412,7 +412,7 @@
"_href": "/api/ibexa/v2/content/types/1/fieldDefinitions/156",
"id": 156,
"identifier": "description",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -492,7 +492,7 @@
"_href": "/api/ibexa/v2/content/types/43/fieldDefinitions/188",
"id": 188,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 1,
"isTranslatable": true,
@@ -524,7 +524,7 @@
"_href": "/api/ibexa/v2/content/types/43/fieldDefinitions/189",
"id": 189,
"identifier": "form",
- "fieldType": "ezform",
+ "fieldType": "ibexa_form",
"fieldGroup": "content",
"position": 2,
"isTranslatable": true,
@@ -611,7 +611,7 @@
"_href": "/api/ibexa/v2/content/types/42/fieldDefinitions/185",
"id": 185,
"identifier": "name",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 10,
"isTranslatable": true,
@@ -648,7 +648,7 @@
"_href": "/api/ibexa/v2/content/types/42/fieldDefinitions/186",
"id": 186,
"identifier": "description",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "content",
"position": 20,
"isTranslatable": true,
@@ -685,7 +685,7 @@
"_href": "/api/ibexa/v2/content/types/42/fieldDefinitions/187",
"id": 187,
"identifier": "page",
- "fieldType": "ezlandingpage",
+ "fieldType": "ibexa_landing_page",
"fieldGroup": "content",
"position": 30,
"isTranslatable": true,
diff --git a/src/bundle/Resources/api_platform/examples/content/types/GET/ContentTypeInfoList.xml.example b/src/bundle/Resources/api_platform/examples/content/types/GET/ContentTypeInfoList.xml.example
index 918783beb..960545a2a 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/GET/ContentTypeInfoList.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/GET/ContentTypeInfoList.xml.example
@@ -26,7 +26,7 @@
1
title
- ezstring
+ ibexa_string
1
true
@@ -48,7 +48,7 @@
152
short_title
- ezstring
+ ibexa_string
2
true
@@ -70,7 +70,7 @@
153
author
- ezauthor
+ ibexa_author
3
true
@@ -90,7 +90,7 @@
120
intro
- ezrichtext
+ ibexa_richtext
4
true
@@ -115,7 +115,7 @@
121
body
- ezrichtext
+ ibexa_richtext
5
true
@@ -140,7 +140,7 @@
123
enable_comments
- ezboolean
+ ibexa_boolean
6
false
@@ -158,7 +158,7 @@
154
image
- ezobjectrelation
+ ibexa_object_relation
7
true
@@ -207,7 +207,7 @@
4
name
- ezstring
+ ibexa_string
1
true
@@ -229,7 +229,7 @@
155
short_name
- ezstring
+ ibexa_string
2
true
@@ -251,7 +251,7 @@
119
short_description
- ezrichtext
+ ibexa_richtext
3
true
@@ -276,7 +276,7 @@
156
description
- ezrichtext
+ ibexa_richtext
4
true
@@ -326,7 +326,7 @@
188
title
- ezstring
+ ibexa_string
content
1
true
@@ -348,7 +348,7 @@
189
form
- ezform
+ ibexa_form
content
2
true
@@ -398,7 +398,7 @@
185
name
- ezstring
+ ibexa_string
content
10
true
@@ -422,7 +422,7 @@
186
description
- ezstring
+ ibexa_string
content
20
true
@@ -446,7 +446,7 @@
187
page
- ezlandingpage
+ ibexa_landing_page
content
30
true
diff --git a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/GET/ContentType.json.example b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/GET/ContentType.json.example
index 67593935b..f7498fbd7 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/GET/ContentType.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/GET/ContentType.json.example
@@ -56,7 +56,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/1",
"id": 1,
"identifier": "title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 1,
"isTranslatable": true,
@@ -93,7 +93,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/152",
"id": 152,
"identifier": "short_title",
- "fieldType": "ezstring",
+ "fieldType": "ibexa_string",
"fieldGroup": "",
"position": 2,
"isTranslatable": true,
@@ -130,7 +130,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/153",
"id": 153,
"identifier": "author",
- "fieldType": "ezauthor",
+ "fieldType": "ibexa_author",
"fieldGroup": "",
"position": 3,
"isTranslatable": true,
@@ -164,7 +164,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/120",
"id": 120,
"identifier": "intro",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 4,
"isTranslatable": true,
@@ -199,7 +199,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/121",
"id": 121,
"identifier": "body",
- "fieldType": "ezrichtext",
+ "fieldType": "ibexa_richtext",
"fieldGroup": "",
"position": 5,
"isTranslatable": true,
@@ -234,7 +234,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/123",
"id": 123,
"identifier": "enable_comments",
- "fieldType": "ezboolean",
+ "fieldType": "ibexa_boolean",
"fieldGroup": "",
"position": 6,
"isTranslatable": false,
@@ -266,7 +266,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/195",
"id": 195,
"identifier": "image",
- "fieldType": "ezimageasset",
+ "fieldType": "ibexa_image_asset",
"fieldGroup": "content",
"position": 7,
"isTranslatable": false,
diff --git a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/GET/ContentType.xml.example b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/GET/ContentType.xml.example
index 59ea81432..238f12265 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/GET/ContentType.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/GET/ContentType.xml.example
@@ -25,7 +25,7 @@
1
title
- ezstring
+ ibexa_string
1
true
@@ -47,7 +47,7 @@
152
short_title
- ezstring
+ ibexa_string
2
true
@@ -69,7 +69,7 @@
153
author
- ezauthor
+ ibexa_author
3
true
@@ -89,7 +89,7 @@
120
intro
- ezrichtext
+ ibexa_richtext
4
true
@@ -114,7 +114,7 @@
121
body
- ezrichtext
+ ibexa_richtext
5
true
@@ -139,7 +139,7 @@
123
enable_comments
- ezboolean
+ ibexa_boolean
6
false
@@ -157,7 +157,7 @@
154
image
- ezobjectrelation
+ ibexa_object_relation
7
true
diff --git a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/PUBLISH/ContentType.xml.example b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/PUBLISH/ContentType.xml.example
index 2edf26ace..9915d88c1 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/PUBLISH/ContentType.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/PUBLISH/ContentType.xml.example
@@ -27,7 +27,7 @@
188
title
- ezstring
+ ibexa_string
1
true
diff --git a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/POST/FieldDefinition.xml.example b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/POST/FieldDefinition.xml.example
index e994eb0f5..ff8a55c21 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/POST/FieldDefinition.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/POST/FieldDefinition.xml.example
@@ -2,7 +2,7 @@
221
name2
- ezstring
+ ibexa_string
0
true
diff --git a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/POST/FieldDefinitionCreate.xml.example b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/POST/FieldDefinitionCreate.xml.example
index 3282099a8..2611e130b 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/POST/FieldDefinitionCreate.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/POST/FieldDefinitionCreate.xml.example
@@ -1,7 +1,7 @@
name
- ezstring
+ ibexa_string
true
diff --git a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/GET/FieldDefinition.json.example b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/GET/FieldDefinition.json.example
index df7975cd9..2f4821603 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/GET/FieldDefinition.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/GET/FieldDefinition.json.example
@@ -4,7 +4,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/195",
"id": 195,
"identifier": "image",
- "fieldType": "ezimageasset",
+ "fieldType": "ibexa_image_asset",
"fieldGroup": "content",
"position": 7,
"isTranslatable": false,
diff --git a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/GET/FieldDefinition.xml.example b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/GET/FieldDefinition.xml.example
index f61269499..247dded6e 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/GET/FieldDefinition.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/GET/FieldDefinition.xml.example
@@ -2,7 +2,7 @@
195
image
- ezimageasset
+ ibexa_image_asset
content
7
false
diff --git a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/PATCH/FieldDefinition.xml.example b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/PATCH/FieldDefinition.xml.example
index a941520fe..a075977ca 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/PATCH/FieldDefinition.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/draft/field_definitions/field_definition_id/PATCH/FieldDefinition.xml.example
@@ -2,7 +2,7 @@
197
author
- ezauthor
+ ibexa_author
new_field_group
10
true
diff --git a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/field_definition_id/GET/FieldDefinition.json.example b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/field_definition_id/GET/FieldDefinition.json.example
index df7975cd9..2f4821603 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/field_definition_id/GET/FieldDefinition.json.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/field_definition_id/GET/FieldDefinition.json.example
@@ -4,7 +4,7 @@
"_href": "/api/ibexa/v2/content/types/2/fieldDefinitions/195",
"id": 195,
"identifier": "image",
- "fieldType": "ezimageasset",
+ "fieldType": "ibexa_image_asset",
"fieldGroup": "content",
"position": 7,
"isTranslatable": false,
diff --git a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/field_definition_id/GET/FieldDefinition.xml.example b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/field_definition_id/GET/FieldDefinition.xml.example
index f61269499..247dded6e 100644
--- a/src/bundle/Resources/api_platform/examples/content/types/content_type_id/field_definition_id/GET/FieldDefinition.xml.example
+++ b/src/bundle/Resources/api_platform/examples/content/types/content_type_id/field_definition_id/GET/FieldDefinition.xml.example
@@ -2,7 +2,7 @@
195
image
- ezimageasset
+ ibexa_image_asset
content
7
false
diff --git a/src/bundle/Resources/api_platform/examples/user/groups/GET/UserGroupList.json.example b/src/bundle/Resources/api_platform/examples/user/groups/GET/UserGroupList.json.example
index afe640263..aefa33dbb 100644
--- a/src/bundle/Resources/api_platform/examples/user/groups/GET/UserGroupList.json.example
+++ b/src/bundle/Resources/api_platform/examples/user/groups/GET/UserGroupList.json.example
@@ -79,21 +79,21 @@
"id": 28,
"fieldDefinitionIdentifier": "first_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Administrator"
},
{
"id": 29,
"fieldDefinitionIdentifier": "last_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "User"
},
{
"id": 30,
"fieldDefinitionIdentifier": "user_account",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezuser",
+ "fieldTypeIdentifier": "ibexa_user",
"fieldValue": {
"hasStoredLogin": true,
"contentId": 14,
@@ -109,14 +109,14 @@
"id": 178,
"fieldDefinitionIdentifier": "signature",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "eztext",
+ "fieldTypeIdentifier": "ibexa_text",
"fieldValue": null
},
{
"id": 180,
"fieldDefinitionIdentifier": "image",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezimage",
+ "fieldTypeIdentifier": "ibexa_image",
"fieldValue": null
}
]
diff --git a/src/bundle/Resources/api_platform/examples/user/groups/GET/UserGroupList.xml.example b/src/bundle/Resources/api_platform/examples/user/groups/GET/UserGroupList.xml.example
index a6ea1d93f..42466978d 100644
--- a/src/bundle/Resources/api_platform/examples/user/groups/GET/UserGroupList.xml.example
+++ b/src/bundle/Resources/api_platform/examples/user/groups/GET/UserGroupList.xml.example
@@ -37,21 +37,21 @@
28
first_name
eng-GB
- ezstring
+ ibexa_string
Administrator
29
last_name
eng-GB
- ezstring
+ ibexa_string
User
30
user_account
eng-GB
- ezuser
+ ibexa_user
true
14
@@ -67,14 +67,14 @@
178
signature
eng-GB
- eztext
+ ibexa_text
180
image
eng-GB
- ezimage
+ ibexa_image
diff --git a/src/bundle/Resources/api_platform/examples/user/groups/path/GET/UserGroup.json.example b/src/bundle/Resources/api_platform/examples/user/groups/path/GET/UserGroup.json.example
index 56f81323a..cdfca06b9 100644
--- a/src/bundle/Resources/api_platform/examples/user/groups/path/GET/UserGroup.json.example
+++ b/src/bundle/Resources/api_platform/examples/user/groups/path/GET/UserGroup.json.example
@@ -75,14 +75,14 @@
"id": 24,
"fieldDefinitionIdentifier": "name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Administrator users"
},
{
"id": 25,
"fieldDefinitionIdentifier": "description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": null
}
]
diff --git a/src/bundle/Resources/api_platform/examples/user/groups/path/GET/UserGroup.xml.example b/src/bundle/Resources/api_platform/examples/user/groups/path/GET/UserGroup.xml.example
index 2145db50a..15f28b7dc 100644
--- a/src/bundle/Resources/api_platform/examples/user/groups/path/GET/UserGroup.xml.example
+++ b/src/bundle/Resources/api_platform/examples/user/groups/path/GET/UserGroup.xml.example
@@ -36,14 +36,14 @@
24
name
eng-GB
- ezstring
+ ibexa_string
Administrator users
25
description
eng-GB
- ezstring
+ ibexa_string
diff --git a/src/bundle/Resources/api_platform/examples/user/groups/path/PATCH/UserGroup.json.example b/src/bundle/Resources/api_platform/examples/user/groups/path/PATCH/UserGroup.json.example
index 56f81323a..cdfca06b9 100644
--- a/src/bundle/Resources/api_platform/examples/user/groups/path/PATCH/UserGroup.json.example
+++ b/src/bundle/Resources/api_platform/examples/user/groups/path/PATCH/UserGroup.json.example
@@ -75,14 +75,14 @@
"id": 24,
"fieldDefinitionIdentifier": "name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Administrator users"
},
{
"id": 25,
"fieldDefinitionIdentifier": "description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": null
}
]
diff --git a/src/bundle/Resources/api_platform/examples/user/groups/path/PATCH/UserGroup.xml.example b/src/bundle/Resources/api_platform/examples/user/groups/path/PATCH/UserGroup.xml.example
index 2145db50a..15f28b7dc 100644
--- a/src/bundle/Resources/api_platform/examples/user/groups/path/PATCH/UserGroup.xml.example
+++ b/src/bundle/Resources/api_platform/examples/user/groups/path/PATCH/UserGroup.xml.example
@@ -36,14 +36,14 @@
24
name
eng-GB
- ezstring
+ ibexa_string
Administrator users
25
description
eng-GB
- ezstring
+ ibexa_string
diff --git a/src/bundle/Resources/api_platform/examples/user/groups/path/subgroups/POST/UserGroup.json.example b/src/bundle/Resources/api_platform/examples/user/groups/path/subgroups/POST/UserGroup.json.example
index ffa7a38f4..922943e91 100644
--- a/src/bundle/Resources/api_platform/examples/user/groups/path/subgroups/POST/UserGroup.json.example
+++ b/src/bundle/Resources/api_platform/examples/user/groups/path/subgroups/POST/UserGroup.json.example
@@ -75,14 +75,14 @@
"id": 384,
"fieldDefinitionIdentifier": "name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "UserGroup2"
},
{
"id": 385,
"fieldDefinitionIdentifier": "description",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "This is the description of the user group"
}
]
diff --git a/src/bundle/Resources/api_platform/examples/user/groups/path/subgroups/POST/UserGroup.xml.example b/src/bundle/Resources/api_platform/examples/user/groups/path/subgroups/POST/UserGroup.xml.example
index 7f182f8de..923fe968c 100644
--- a/src/bundle/Resources/api_platform/examples/user/groups/path/subgroups/POST/UserGroup.xml.example
+++ b/src/bundle/Resources/api_platform/examples/user/groups/path/subgroups/POST/UserGroup.xml.example
@@ -36,14 +36,14 @@
380
name
eng-GB
- ezstring
+ ibexa_string
UserGroup2
381
description
eng-GB
- ezstring
+ ibexa_string
This is the description of the user group
diff --git a/src/bundle/Resources/api_platform/examples/user/groups/path/users/POST/User.json.example b/src/bundle/Resources/api_platform/examples/user/groups/path/users/POST/User.json.example
index c0866de65..4c1893765 100644
--- a/src/bundle/Resources/api_platform/examples/user/groups/path/users/POST/User.json.example
+++ b/src/bundle/Resources/api_platform/examples/user/groups/path/users/POST/User.json.example
@@ -79,21 +79,21 @@
"id": 262,
"fieldDefinitionIdentifier": "first_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Yura"
},
{
"id": 263,
"fieldDefinitionIdentifier": "last_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Rajzer"
},
{
"id": 264,
"fieldDefinitionIdentifier": "user_account",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezuser",
+ "fieldTypeIdentifier": "ibexa_user",
"fieldValue": {
"hasStoredLogin": true,
"contentId": 57,
@@ -109,14 +109,14 @@
"id": 265,
"fieldDefinitionIdentifier": "signature",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "eztext",
+ "fieldTypeIdentifier": "ibexa_text",
"fieldValue": null
},
{
"id": 266,
"fieldDefinitionIdentifier": "image",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezimage",
+ "fieldTypeIdentifier": "ibexa_image",
"fieldValue": null
}
]
diff --git a/src/bundle/Resources/api_platform/examples/user/groups/path/users/POST/User.xml.example b/src/bundle/Resources/api_platform/examples/user/groups/path/users/POST/User.xml.example
index bbe48cbe9..ece458109 100644
--- a/src/bundle/Resources/api_platform/examples/user/groups/path/users/POST/User.xml.example
+++ b/src/bundle/Resources/api_platform/examples/user/groups/path/users/POST/User.xml.example
@@ -37,21 +37,21 @@
207
first_name
eng-GB
- ezstring
+ ibexa_string
Yura
208
last_name
eng-GB
- ezstring
+ ibexa_string
Rajzer
209
user_account
eng-GB
- ezuser
+ ibexa_user
true
59
@@ -65,14 +65,14 @@
210
signature
eng-GB
- eztext
+ ibexa_text
211
image
eng-GB
- ezimage
+ ibexa_image
diff --git a/src/bundle/Resources/api_platform/examples/user/users/GET/UserList.json.example b/src/bundle/Resources/api_platform/examples/user/users/GET/UserList.json.example
index bd915b1cc..a5863e33f 100644
--- a/src/bundle/Resources/api_platform/examples/user/users/GET/UserList.json.example
+++ b/src/bundle/Resources/api_platform/examples/user/users/GET/UserList.json.example
@@ -83,21 +83,21 @@
"id": 28,
"fieldDefinitionIdentifier": "first_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Administrator"
},
{
"id": 29,
"fieldDefinitionIdentifier": "last_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "User"
},
{
"id": 30,
"fieldDefinitionIdentifier": "user_account",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezuser",
+ "fieldTypeIdentifier": "ibexa_user",
"fieldValue": {
"hasStoredLogin": true,
"contentId": 14,
@@ -113,14 +113,14 @@
"id": 178,
"fieldDefinitionIdentifier": "signature",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "eztext",
+ "fieldTypeIdentifier": "ibexa_text",
"fieldValue": null
},
{
"id": 180,
"fieldDefinitionIdentifier": "image",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezimage",
+ "fieldTypeIdentifier": "ibexa_image",
"fieldValue": null
}
]
diff --git a/src/bundle/Resources/api_platform/examples/user/users/GET/UserList.xml.example b/src/bundle/Resources/api_platform/examples/user/users/GET/UserList.xml.example
index 6dbef3cdf..538e06e13 100644
--- a/src/bundle/Resources/api_platform/examples/user/users/GET/UserList.xml.example
+++ b/src/bundle/Resources/api_platform/examples/user/users/GET/UserList.xml.example
@@ -38,21 +38,21 @@
28
first_name
eng-GB
- ezstring
+ ibexa_string
Administrator
29
last_name
eng-GB
- ezstring
+ ibexa_string
User
30
user_account
eng-GB
- ezuser
+ ibexa_user
true
14
@@ -66,14 +66,14 @@
178
signature
eng-GB
- eztext
+ ibexa_text
180
image
eng-GB
- ezimage
+ ibexa_image
diff --git a/src/bundle/Resources/api_platform/examples/user/users/user_id/GET/User.json.example b/src/bundle/Resources/api_platform/examples/user/users/user_id/GET/User.json.example
index e0318f6dd..bb1982a64 100644
--- a/src/bundle/Resources/api_platform/examples/user/users/user_id/GET/User.json.example
+++ b/src/bundle/Resources/api_platform/examples/user/users/user_id/GET/User.json.example
@@ -83,21 +83,21 @@
"id": 342,
"fieldDefinitionIdentifier": "first_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Jose"
},
{
"id": 343,
"fieldDefinitionIdentifier": "last_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Vargas"
},
{
"id": 344,
"fieldDefinitionIdentifier": "user_account",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezuser",
+ "fieldTypeIdentifier": "ibexa_user",
"fieldValue": {
"hasStoredLogin": true,
"contentId": 79,
@@ -113,14 +113,14 @@
"id": 345,
"fieldDefinitionIdentifier": "signature",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "eztext",
+ "fieldTypeIdentifier": "ibexa_text",
"fieldValue": null
},
{
"id": 346,
"fieldDefinitionIdentifier": "image",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezimage",
+ "fieldTypeIdentifier": "ibexa_image",
"fieldValue": null
}
]
diff --git a/src/bundle/Resources/api_platform/examples/user/users/user_id/GET/User.xml.example b/src/bundle/Resources/api_platform/examples/user/users/user_id/GET/User.xml.example
index fab328704..ea6f5b903 100644
--- a/src/bundle/Resources/api_platform/examples/user/users/user_id/GET/User.xml.example
+++ b/src/bundle/Resources/api_platform/examples/user/users/user_id/GET/User.xml.example
@@ -38,21 +38,21 @@
342
first_name
eng-GB
- ezstring
+ ibexa_string
Jose
343
last_name
eng-GB
- ezstring
+ ibexa_string
Vargas
344
user_account
eng-GB
- ezuser
+ ibexa_user
true
79
@@ -68,14 +68,14 @@
345
signature
eng-GB
- eztext
+ ibexa_text
346
image
eng-GB
- ezimage
+ ibexa_image
diff --git a/src/bundle/Resources/api_platform/examples/user/users/user_id/PATCH/User.json.example b/src/bundle/Resources/api_platform/examples/user/users/user_id/PATCH/User.json.example
index 8f1a529db..9f979f155 100644
--- a/src/bundle/Resources/api_platform/examples/user/users/user_id/PATCH/User.json.example
+++ b/src/bundle/Resources/api_platform/examples/user/users/user_id/PATCH/User.json.example
@@ -79,21 +79,21 @@
"id": 342,
"fieldDefinitionIdentifier": "first_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Jose"
},
{
"id": 343,
"fieldDefinitionIdentifier": "last_name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Vargas"
},
{
"id": 344,
"fieldDefinitionIdentifier": "user_account",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezuser",
+ "fieldTypeIdentifier": "ibexa_user",
"fieldValue": {
"hasStoredLogin": true,
"contentId": 79,
@@ -109,14 +109,14 @@
"id": 345,
"fieldDefinitionIdentifier": "signature",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "eztext",
+ "fieldTypeIdentifier": "ibexa_text",
"fieldValue": null
},
{
"id": 346,
"fieldDefinitionIdentifier": "image",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezimage",
+ "fieldTypeIdentifier": "ibexa_image",
"fieldValue": null
}
]
diff --git a/src/bundle/Resources/api_platform/examples/user/users/user_id/PATCH/User.xml.example b/src/bundle/Resources/api_platform/examples/user/users/user_id/PATCH/User.xml.example
index caf3abbaf..f282a8e9b 100644
--- a/src/bundle/Resources/api_platform/examples/user/users/user_id/PATCH/User.xml.example
+++ b/src/bundle/Resources/api_platform/examples/user/users/user_id/PATCH/User.xml.example
@@ -37,21 +37,21 @@
342
first_name
eng-GB
- ezstring
+ ibexa_string
Jose
343
last_name
eng-GB
- ezstring
+ ibexa_string
Vargas
344
user_account
eng-GB
- ezuser
+ ibexa_user
true
79
@@ -67,14 +67,14 @@
345
signature
eng-GB
- eztext
+ ibexa_text
346
image
eng-GB
- ezimage
+ ibexa_image
diff --git a/src/bundle/Resources/config/services.yml b/src/bundle/Resources/config/services.yml
index 476ec4d32..986305204 100644
--- a/src/bundle/Resources/config/services.yml
+++ b/src/bundle/Resources/config/services.yml
@@ -89,7 +89,7 @@ services:
Ibexa\Rest\Server\Controller\BinaryContent:
parent: Ibexa\Rest\Server\Controller
arguments:
- - '@ibexa.field_type.ezimage.variation_service'
+ - '@ibexa.field_type.ibexa_image.variation_service'
- '@ibexa.config.resolver'
tags: [controller.service_arguments]
@@ -259,64 +259,64 @@ services:
arguments:
- "@router"
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezimage }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_image }
Ibexa\Rest\FieldTypeProcessor\ImageAssetFieldTypeProcessor:
factory: ['@Ibexa\Bundle\Rest\ApiLoader\Factory', getImageAssetFieldTypeProcessor]
arguments:
- "@router"
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezimageasset }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_image_asset }
Ibexa\Rest\FieldTypeProcessor\DateAndTimeProcessor:
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezdatetime }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_datetime }
Ibexa\Rest\FieldTypeProcessor\DateProcessor:
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezdate }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_date }
Ibexa\Rest\FieldTypeProcessor\MediaProcessor:
factory: ['@Ibexa\Bundle\Rest\ApiLoader\Factory', getMediaFieldTypeProcessor]
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezmedia }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_media }
Ibexa\Rest\FieldTypeProcessor\RelationListProcessor:
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezobjectrelationlist }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_object_relation_list }
calls:
- [setRouter, ["@router"]]
- [setLocationService, ['@ibexa.api.service.location']]
Ibexa\Rest\FieldTypeProcessor\RelationProcessor:
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezobjectrelation }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_object_relation }
calls:
- [setRouter, ["@router"]]
- [setLocationService, ['@ibexa.api.service.location']]
Ibexa\Rest\FieldTypeProcessor\TimeProcessor:
tags:
- - { name: ibexa.rest.field_type.processor, alias: eztime }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_time }
Ibexa\Rest\FieldTypeProcessor\BinaryProcessor:
factory: ['@Ibexa\Bundle\Rest\ApiLoader\Factory', getBinaryFileFieldTypeProcessor]
arguments:
- '@ibexa.core.io.default_url_decorator'
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezbinaryfile }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_binaryfile }
Ibexa\Rest\FieldTypeProcessor\FloatProcessor:
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezfloat }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_float }
Ibexa\Rest\FieldTypeProcessor\StringProcessor:
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezstring }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_string }
Ibexa\Rest\FieldTypeProcessor\UserProcessor:
tags:
- - { name: ibexa.rest.field_type.processor, alias: ezuser }
+ - { name: ibexa.rest.field_type.processor, alias: ibexa_user }
### OUTPUT
diff --git a/src/lib/Server/Controller/BinaryContent.php b/src/lib/Server/Controller/BinaryContent.php
index 377b90308..c0bb531fa 100644
--- a/src/lib/Server/Controller/BinaryContent.php
+++ b/src/lib/Server/Controller/BinaryContent.php
@@ -75,7 +75,7 @@ public function getImageVariation($imageId, $variationIdentifier)
throw new Exceptions\NotFoundException("There is no image connected with field {$fieldId}");
}
$content = $this->repository->getContentService()->loadContent((int) $value->destinationContentId);
- $mappings = $this->configResolver->getParameter('fieldtypes.ezimageasset.mappings');
+ $mappings = $this->configResolver->getParameter('fieldtypes.ibexa_image_asset.mappings');
$field = $content->getField($mappings['content_field_identifier']);
}
diff --git a/tests/bundle/Functional/BinaryContentTest.php b/tests/bundle/Functional/BinaryContentTest.php
index f0f54616b..2afea62ad 100644
--- a/tests/bundle/Functional/BinaryContentTest.php
+++ b/tests/bundle/Functional/BinaryContentTest.php
@@ -187,7 +187,7 @@ private function createContentTypeWithImageAsset(): string
title
- ezstring
+ ibexa_string
content
1
true
@@ -204,7 +204,7 @@ private function createContentTypeWithImageAsset(): string
image_asset
- ezimageasset
+ ibexa_image_asset
content
2
true
diff --git a/tests/bundle/Functional/ContentTypeTest.php b/tests/bundle/Functional/ContentTypeTest.php
index e9fbe8890..e0d815187 100644
--- a/tests/bundle/Functional/ContentTypeTest.php
+++ b/tests/bundle/Functional/ContentTypeTest.php
@@ -97,7 +97,7 @@ public function testCreateContentType($contentTypeGroupHref)
title
- ezstring
+ ibexa_string
content
1
true
@@ -383,7 +383,7 @@ public function testAddContentTypeDraftFieldDefinition($contentTypeDraftHref)
secondtext
- ezstring
+ ibexa_string
content
1
true
diff --git a/tests/bundle/Functional/SearchView/SearchViewTest.php b/tests/bundle/Functional/SearchView/SearchViewTest.php
index 1f259d966..779bbc1a8 100644
--- a/tests/bundle/Functional/SearchView/SearchViewTest.php
+++ b/tests/bundle/Functional/SearchView/SearchViewTest.php
@@ -159,7 +159,7 @@ private function createTestContentType(): string
title
- ezstring
+ ibexa_string
content
1
true
@@ -176,7 +176,7 @@ private function createTestContentType(): string
tags
- ezkeyword
+ ibexa_keyword
content
2
true
@@ -434,7 +434,7 @@ private function createContentWithUrlField(): string
title
- ezurl
+ ibexa_url
content
1
true
diff --git a/tests/integration/Serializer/_snapshot/TestDataObject.json b/tests/integration/Serializer/_snapshot/TestDataObject.json
index 19bc02931..340957753 100644
--- a/tests/integration/Serializer/_snapshot/TestDataObject.json
+++ b/tests/integration/Serializer/_snapshot/TestDataObject.json
@@ -93,7 +93,7 @@
"id": 186,
"fieldDefinitionIdentifier": "name",
"languageCode": "eng-GB",
- "fieldTypeIdentifier": "ezstring",
+ "fieldTypeIdentifier": "ibexa_string",
"fieldValue": "Home"
}
]
diff --git a/tests/integration/Serializer/_snapshot/TestDataObject.xml b/tests/integration/Serializer/_snapshot/TestDataObject.xml
index c043ebaa2..e898c8936 100644
--- a/tests/integration/Serializer/_snapshot/TestDataObject.xml
+++ b/tests/integration/Serializer/_snapshot/TestDataObject.xml
@@ -49,7 +49,7 @@
186
name
eng-GB
- ezstring
+ ibexa_string
Home
diff --git a/tests/lib/Server/Input/Parser/ContentCreateTest.php b/tests/lib/Server/Input/Parser/ContentCreateTest.php
index fa7525991..aebc6f96a 100644
--- a/tests/lib/Server/Input/Parser/ContentCreateTest.php
+++ b/tests/lib/Server/Input/Parser/ContentCreateTest.php
@@ -486,7 +486,7 @@ private function getFieldTypeParserMock(): FieldTypeParser & MockObject
$fieldTypeParserMock->expects(self::any())
->method('parseValue')
- ->with('ezstring', [])
+ ->with('ibexa_string', [])
->willReturn('foo');
return $fieldTypeParserMock;
@@ -559,14 +559,14 @@ protected function getContentType(): ContentType
[
'id' => 42,
'identifier' => 'subject',
- 'fieldTypeIdentifier' => 'ezstring',
+ 'fieldTypeIdentifier' => 'ibexa_string',
]
),
new FieldDefinition(
[
'id' => 43,
'identifier' => 'author',
- 'fieldTypeIdentifier' => 'ezstring',
+ 'fieldTypeIdentifier' => 'ibexa_string',
]
),
]),
diff --git a/tests/lib/Server/Input/Parser/FieldDefinitionCreateTest.php b/tests/lib/Server/Input/Parser/FieldDefinitionCreateTest.php
index 9cb450995..e436d174a 100644
--- a/tests/lib/Server/Input/Parser/FieldDefinitionCreateTest.php
+++ b/tests/lib/Server/Input/Parser/FieldDefinitionCreateTest.php
@@ -39,7 +39,7 @@ public function testParse(): void
);
self::assertEquals(
- 'ezstring',
+ 'ibexa_string',
$result->fieldTypeIdentifier,
'fieldTypeIdentifier not created correctly'
);
@@ -197,12 +197,12 @@ protected function getContentTypeServiceMock(): ContentTypeService&MockObject
$contentTypeServiceMock->expects(self::any())
->method('newFieldDefinitionCreateStruct')
- ->with(self::equalTo('title'), self::equalTo('ezstring'))
+ ->with(self::equalTo('title'), self::equalTo('ibexa_string'))
->willReturn(
new FieldDefinitionCreateStruct(
[
'identifier' => 'title',
- 'fieldTypeIdentifier' => 'ezstring',
+ 'fieldTypeIdentifier' => 'ibexa_string',
]
)
);
@@ -214,7 +214,7 @@ protected function getInputArray(): array
{
return [
'identifier' => 'title',
- 'fieldType' => 'ezstring',
+ 'fieldType' => 'ibexa_string',
'fieldGroup' => 'content',
'position' => '1',
'isTranslatable' => 'true',
@@ -238,7 +238,7 @@ protected function getInputArray(): array
],
],
],
- // Note that ezstring does not support settings, but that is irrelevant for the test
+ // Note that ibexa_string does not support settings, but that is irrelevant for the test
'fieldSettings' => [
'textRows' => 24,
],
diff --git a/tests/lib/Server/Input/Parser/FieldDefinitionUpdateTest.php b/tests/lib/Server/Input/Parser/FieldDefinitionUpdateTest.php
index c897662cb..e7993fd3f 100644
--- a/tests/lib/Server/Input/Parser/FieldDefinitionUpdateTest.php
+++ b/tests/lib/Server/Input/Parser/FieldDefinitionUpdateTest.php
@@ -192,7 +192,7 @@ protected function getContentTypeServiceMock(): ContentTypeService&MockObject
new FieldDefinition(
[
'id' => 24,
- 'fieldTypeIdentifier' => 'ezstring',
+ 'fieldTypeIdentifier' => 'ibexa_string',
'identifier' => 'foo',
]
),
diff --git a/tests/lib/Server/Input/Parser/UserCreateTest.php b/tests/lib/Server/Input/Parser/UserCreateTest.php
index 42b6143f6..57ae4c2ab 100644
--- a/tests/lib/Server/Input/Parser/UserCreateTest.php
+++ b/tests/lib/Server/Input/Parser/UserCreateTest.php
@@ -417,7 +417,7 @@ private function getFieldTypeParserMock(): FieldTypeParser & MockObject
$fieldTypeParserMock->expects(self::any())
->method('parseValue')
- ->with('ezstring', [])
+ ->with('ibexa_string', [])
->willReturn('foo');
return $fieldTypeParserMock;
@@ -472,7 +472,7 @@ protected function getContentType(): ContentType
[
'id' => 42,
'identifier' => 'name',
- 'fieldTypeIdentifier' => 'ezstring',
+ 'fieldTypeIdentifier' => 'ibexa_string',
]
),
]),
diff --git a/tests/lib/Server/Input/Parser/UserGroupCreateTest.php b/tests/lib/Server/Input/Parser/UserGroupCreateTest.php
index 35d401f40..f0ed746c5 100644
--- a/tests/lib/Server/Input/Parser/UserGroupCreateTest.php
+++ b/tests/lib/Server/Input/Parser/UserGroupCreateTest.php
@@ -294,7 +294,7 @@ private function getFieldTypeParserMock(): FieldTypeParser & MockObject
$fieldTypeParserMock->expects(self::any())
->method('parseValue')
- ->with('ezstring', [])
+ ->with('ibexa_string', [])
->willReturn('foo');
return $fieldTypeParserMock;
@@ -346,7 +346,7 @@ protected function getContentType(): ContentType
[
'id' => 42,
'identifier' => 'name',
- 'fieldTypeIdentifier' => 'ezstring',
+ 'fieldTypeIdentifier' => 'ibexa_string',
]
),
]),
diff --git a/tests/lib/Server/Output/ValueObjectVisitor/VersionTest.php b/tests/lib/Server/Output/ValueObjectVisitor/VersionTest.php
index 098920c45..8efcbb0e0 100644
--- a/tests/lib/Server/Output/ValueObjectVisitor/VersionTest.php
+++ b/tests/lib/Server/Output/ValueObjectVisitor/VersionTest.php
@@ -52,16 +52,16 @@ public function testVisit(): string
[
'id' => 1,
'languageCode' => 'eng-US',
- 'fieldDefIdentifier' => 'ezauthor',
- 'fieldTypeIdentifier' => 'ezauthor',
+ 'fieldDefIdentifier' => 'ibexa_author',
+ 'fieldTypeIdentifier' => 'ibexa_author',
]
),
new Field(
[
'id' => 2,
'languageCode' => 'eng-US',
- 'fieldDefIdentifier' => 'ezimage',
- 'fieldTypeIdentifier' => 'ezauthor',
+ 'fieldDefIdentifier' => 'ibexa_image',
+ 'fieldTypeIdentifier' => 'ibexa_author',
]
),
],