I have updated the variable from $this->entityManager to $this->entityTypeManager.
msuthars → created an issue.
Drupal 9.5.10.
Hi.
I'm using Paragraphs 8.x-1.15 and Paragraphs Editor Enhancements 2.1.0. The theme is Claro. You will able to reproduce the issue on https://simplytest.me.
Recording: https://www.drupal.org/files/issues/2023-08-26/paragraphs_ee.mp4 →
Please review the patch.
msuthars → created an issue.
Updated the test according to https://www.drupal.org/project/editor_file/issues/3232053#comment-15084068 🌱 Drupal 10 & CKEditor 5 readiness Needs review .
Added check if users are available then use their value else use null.
msuthars → created an issue.
As I check the drupalfile
plugin is saving configuration data in the third-party settings of the editor. So here we can't use the standard method (mapCKEditor4SettingsToCKEditor5Configuration()
) to migrate the configuration of the plugin from CKEditor 4 to 5. To migrate the third-party settings from Ckeditor 4 to 5, I created a method migratePluginThirdPartyConfiguration()
in the CKeditor5Plugin/File.php, the third-party settings will fetch from the ckeditor4 editor and saved to the ckeditor5 editor (https://git.drupalcode.org/project/editor_file/-/merge_requests/3/diffs?...). I have not found any other standard way to migrate the third-party settings.