diff --git a/core/modules/aggregator/aggregator.install b/core/modules/aggregator/aggregator.install index cfd836b747..ee23b29850 100644 --- a/core/modules/aggregator/aggregator.install +++ b/core/modules/aggregator/aggregator.install @@ -21,3 +21,10 @@ function aggregator_requirements($phase) { } return $requirements; } + +/** + * Implements hook_update_last_removed(). + */ +function aggregator_update_last_removed() { + return 8501; +} diff --git a/core/modules/block/block.install b/core/modules/block/block.install index 7010f59b02..0a2717dabf 100644 --- a/core/modules/block/block.install +++ b/core/modules/block/block.install @@ -16,3 +16,10 @@ function block_install() { // invalidate all cached HTML output. Cache::invalidateTags(['rendered']); } + +/** + * Implements hook_update_last_removed(). + */ +function block_update_last_removed() { + return 8003; +} diff --git a/core/modules/block_content/block_content.install b/core/modules/block_content/block_content.install new file mode 100644 index 0000000000..af22b62527 --- /dev/null +++ b/core/modules/block_content/block_content.install @@ -0,0 +1,13 @@ +Enable translation for content types, taxonomy vocabularies, accounts, or any other element you wish to translate.', $t_args); \Drupal::messenger()->addWarning($message); } + +/** + * Implements hook_update_last_removed(). + */ +function content_translation_update_last_removed() { + return 8400; +} diff --git a/core/modules/dblog/dblog.install b/core/modules/dblog/dblog.install index f226ed04d9..b3164051b8 100644 --- a/core/modules/dblog/dblog.install +++ b/core/modules/dblog/dblog.install @@ -90,3 +90,10 @@ function dblog_schema() { return $schema; } + +/** + * Implements hook_update_last_removed(). + */ +function dblog_update_last_removed() { + return 8600; +} diff --git a/core/modules/editor/editor.install b/core/modules/editor/editor.install new file mode 100644 index 0000000000..6e17486a87 --- /dev/null +++ b/core/modules/editor/editor.install @@ -0,0 +1,13 @@ +delete('node.node_access_needs_rebuild'); } + +/** + * Implements hook_update_last_removed(). + */ +function node_update_last_removed() { + return 8700; +} diff --git a/core/modules/path/path.install b/core/modules/path/path.install new file mode 100644 index 0000000000..78efdc997d --- /dev/null +++ b/core/modules/path/path.install @@ -0,0 +1,13 @@ +toString(); return $requirement; } + +/** + * Implements hook_update_last_removed(). + */ +function update_update_last_removed() { + return 8001; +} diff --git a/core/modules/views/views.install b/core/modules/views/views.install index e8e3e5e7df..a7ed0b99a8 100644 --- a/core/modules/views/views.install +++ b/core/modules/views/views.install @@ -11,3 +11,10 @@ function views_install() { module_set_weight('views', 10); } + +/** + * Implements hook_update_last_removed(). + */ +function views_update_last_removed() { + return 8500; +} diff --git a/core/modules/workspaces/workspaces.install b/core/modules/workspaces/workspaces.install index 68d6f58d67..216aa7a33d 100644 --- a/core/modules/workspaces/workspaces.install +++ b/core/modules/workspaces/workspaces.install @@ -120,3 +120,10 @@ function workspaces_schema() { return $schema; } + +/** + * Implements hook_update_last_removed(). + */ +function workspaces_update_last_removed() { + return 8801; +}