Initial Drupal 11 with DDEV setup
This commit is contained in:
20
web/core/modules/node/node.post_update.php
Normal file
20
web/core/modules/node/node.post_update.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Post update functions for Node.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_removed_post_updates().
|
||||
*/
|
||||
function node_removed_post_updates(): array {
|
||||
return [
|
||||
'node_post_update_configure_status_field_widget' => '9.0.0',
|
||||
'node_post_update_node_revision_views_data' => '9.0.0',
|
||||
'node_post_update_glossary_view_published' => '10.0.0',
|
||||
'node_post_update_rebuild_node_revision_routes' => '10.0.0',
|
||||
'node_post_update_modify_base_field_author_override' => '10.0.0',
|
||||
'node_post_update_set_node_type_description_and_help_to_null' => '11.0.0',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user