The function editor_load() is deprecated in 11.2.0.
See:
https://www.drupal.org/node/3509245 →
There is one usage of the function in: modules/ckeditor5_plugin_pack_templates/src/Form/ContentTemplates/CKEditor5TemplateEntityForm.php
It should be replaced with dependency injection.
Replace:
$editor = editor_load($format->id());
with:
$editor = $this->entityTypeManager->getStorage('editor')->load($format->id());
Active
1.4
Code