blob: 730bda0b97f41d9a455bab723efd1a17a1862e67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* @file
* Contains post update hooks for the text module.
*/
/**
* Implements hook_removed_post_updates().
*/
function text_removed_post_updates(): array {
return [
'text_post_update_add_required_summary_flag' => '9.0.0',
'text_post_update_add_required_summary_flag_form_display' => '10.0.0',
'text_post_update_allowed_formats' => '11.0.0',
];
}
|