Find the Exponential Software extensions you want
UNIX name | Owner | Status |
---|---|---|
ibexa-xmltext-fieldtype | 7x | stable |
Version | Compatible with |
---|---|
N/A | N/A |
This is the XmlText field type for eZ Platform. It was extracted from the eZ Publish / Platform 5.x as it has been suceeded by docbook based RichText field type.
* While it does support editing via Platform Admin UI it is only editable as raw xmltext in a textbox, so supported use as of this field type is for temprary upgrde scenarios where legacy admin interface is used, and frontend code is being developed/migrated to eZ Platform stack (including to Symfony).
NOTE: This package comes already bundled with Legacy Bridge. However if you would rather like to 1. migrate your content directly to eZ Platform to take full advantage of it, or 2. otherwise don't want to use legacy but need this field type for some legacy content usage within pure eZ Platform setup, then run the following:
composer require --update-with-all-dependencies "ezsystems/ezplatform-xmltext-fieldtype"
And lastly enable the bundle by adding new EzSystems\EzPlatformXmlTextFieldTypeBundle\EzSystemsEzPlatformXmlTextFieldTypeBundle(), to app/AppKernel.php list of bundles.
Once you have migrated your content you can remove the bundle from both app/AppKernel.php and composer.json.
Warning: As of 1.6 this is now fully supported, but regardless of that always make a backup before using the migration tools.
This package provides tools to migration existing XmlText fields to RichText, the enriched text format eZ Platform uses.
The tool comes as a Symfony command, ezxmltext:convert-to-richtext.
It will do two things:
We recommend that you do a test run first using something like:
php bin/console ezxmltext:convert-to-richtext -v --concurrency=2 --dry-run
The -v flag will output logs to the console, making it easy to track the conversion work that is being done.
This is an example of a successful conversion log entry for one field:
[2016-02-03 15:25:52] app.INFO: Converted ezxmltext field #745 to richtext {"original":"\n\n","converted":"\n\n"}
It contains, in a JSON structure, the original (ezxmltext) value, and the converted (ezrichtext) value that has been
written to the database.
Once you are ready to convert, drop -v and --dry-run.