Draft: [11.x] Remove deprecated code from system module
1 unresolved thread
Closes #3425419
Merge request reports
Activity
added 14 commits
-
0dbfbea4...03b8070a - 6 commits from branch
project:11.x
- f7a5edda - Clean-up image resource #3265953
- c79ca822 - remove MachineNameController #2662330
- 0542b9ce - Remains of #2921810 + TimestampFormatterSettingsUpdateTest and...
- be28b6c1 - clean-up constructors and arguments
- bb446528 - fix EntityCacheTagsTestBase
- 858f993c - clean-up .module
- 17653073 - remove database_statement_monitoring_test #3316923
- 4a89696d - Remove stale_file_threshold but keep update hook
Toggle commit list-
0dbfbea4...03b8070a - 6 commits from branch
added 1 commit
- eab9d1b8 - Remove stale_file_threshold but keep update hook
1363 1220 unset($info['Zip']); 1364 1221 } 1365 1222 } 1366 1367 /** 1368 * Implements hook_ENTITY_TYPE_presave() for entity_view_display entities. 1369 * 1370 * Provides a BC layer for modules providing old configurations. 1371 * 1372 * @see https://www.drupal.org/node/2993639 1373 * 1374 * @todo Remove this BC layer in drupal:11.0.0. 1375 */ 1376 function system_entity_view_display_presave(EntityViewDisplayInterface $entity_view_display): void { Removing the presave (and others) without also removing the update here leaves things out of sync a bit, the update will run but it'll be a no-op. However, I think this makes sense because we need to remove all the updates/post updates in one go across modules, and regenerating database dumps will need to happen on the 10.3 branch anyway.
Please register or sign in to reply