blob: db795a147d0982dfc640e013348a31b86f00d40f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* @file
* Post update functions for CKEditor 5.
*/
// cspell:ignore multiblock
/**
* Implements hook_removed_post_updates().
*/
function ckeditor5_removed_post_updates(): array {
return [
'ckeditor5_post_update_alignment_buttons' => '10.0.0',
'ckeditor5_post_update_image_toolbar_item' => '11.0.0',
'ckeditor5_post_update_plugins_settings_export_order' => '11.0.0',
'ckeditor5_post_update_code_block' => '11.0.0',
'ckeditor5_post_update_list_multiblock' => '11.0.0',
'ckeditor5_post_update_list_start_reversed' => '11.0.0',
];
}
|