
| Current Path : /var/www/html/c12park/web/core/modules/ckeditor5/tests/modules/ckeditor_test/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/c12park/web/core/modules/ckeditor5/tests/modules/ckeditor_test/ckeditor_test.module |
<?php
/**
* @file
* Implements hooks for the CKEditor test module.
*/
declare(strict_types = 1);
/**
* Implements hook_editor_info_alter().
*/
function ckeditor_test_editor_info_alter(array &$editors) {
// Drupal 9 used to have an editor called ckeditor. Copy the Unicorn editor to
// it to be able to test upgrading to CKEditor 5.
$editors['ckeditor'] = $editors['unicorn'];
}