2015-10-05 15:26:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Post update functions for System.
|
|
|
|
*/
|
|
|
|
|
Issue #2918500 by tim.plunkett, EclipseGc, tedbow, larowlan, jibran, Wim Leers, phenaproxima, amateescu, borisson_, samuel.mortenson, gaurav.kapoor, KarlShea, hctom, mroycroft, neerajsingh, DamienMcKenna, dsnopek, Xano, TravisCarden, Tim Bozeman: Create a block which can render entity fields
2018-01-04 21:42:17 +00:00
|
|
|
/**
|
2020-03-11 20:58:38 +00:00
|
|
|
* Implements hook_removed_post_updates().
|
|
|
|
*/
|
|
|
|
function system_removed_post_updates() {
|
|
|
|
return [
|
|
|
|
'system_post_update_recalculate_configuration_entity_dependencies' => '9.0.0',
|
|
|
|
'system_post_update_add_region_to_entity_displays' => '9.0.0',
|
|
|
|
'system_post_update_hashes_clear_cache' => '9.0.0',
|
|
|
|
'system_post_update_timestamp_plugins' => '9.0.0',
|
|
|
|
'system_post_update_classy_message_library' => '9.0.0',
|
|
|
|
'system_post_update_field_type_plugins' => '9.0.0',
|
|
|
|
'system_post_update_field_formatter_entity_schema' => '9.0.0',
|
|
|
|
'system_post_update_fix_jquery_extend' => '9.0.0',
|
|
|
|
'system_post_update_change_action_plugins' => '9.0.0',
|
|
|
|
'system_post_update_change_delete_action_plugins' => '9.0.0',
|
|
|
|
'system_post_update_language_item_callback' => '9.0.0',
|
|
|
|
'system_post_update_extra_fields' => '9.0.0',
|
|
|
|
'system_post_update_states_clear_cache' => '9.0.0',
|
|
|
|
'system_post_update_add_expand_all_items_key_in_system_menu_block' => '9.0.0',
|
|
|
|
'system_post_update_clear_menu_cache' => '9.0.0',
|
|
|
|
'system_post_update_layout_plugin_schema_change' => '9.0.0',
|
|
|
|
'system_post_update_entity_reference_autocomplete_match_limit' => '9.0.0',
|
2022-02-08 12:16:18 +00:00
|
|
|
'system_post_update_extra_fields_form_display' => '10.0.0',
|
|
|
|
'system_post_update_uninstall_simpletest' => '10.0.0',
|
|
|
|
'system_post_update_uninstall_entity_reference_module' => '10.0.0',
|
|
|
|
'system_post_update_entity_revision_metadata_bc_cleanup' => '10.0.0',
|
|
|
|
'system_post_update_uninstall_classy' => '10.0.0',
|
|
|
|
'system_post_update_uninstall_stable' => '10.0.0',
|
|
|
|
'system_post_update_claro_dropbutton_variants' => '10.0.0',
|
|
|
|
'system_post_update_schema_version_int' => '10.0.0',
|
|
|
|
'system_post_update_delete_rss_settings' => '10.0.0',
|
|
|
|
'system_post_update_remove_key_value_expire_all_index' => '10.0.0',
|
|
|
|
'system_post_update_service_advisory_settings' => '10.0.0',
|
|
|
|
'system_post_update_delete_authorize_settings' => '10.0.0',
|
|
|
|
'system_post_update_sort_all_config' => '10.0.0',
|
2022-08-11 12:02:30 +00:00
|
|
|
'system_post_update_enable_provider_database_driver' => '10.0.0',
|
Issue #2916740 by chr.fritsch, xjm, Manuel Garcia, tstoeckler, alexpott, seanB, Sam152, amateescu, tim.plunkett, dawehner, larowlan, Berdir: Add generic entity actions
2018-01-09 08:47:01 +00:00
|
|
|
];
|
2018-04-30 00:33:47 +00:00
|
|
|
}
|
Issue #3227824 by brianperry, nod_, D34dMan, ravi.shankar, alexpott, johnny5th, bbrala, yogeshmpawar, Suresh Prabhu Parkala, larowlan, joachim, benjifisher, baddysonja, xjm, gabesullice, casey, lauriii: Move the linkset functionality from the decoupled menus contributed module to core's system module
2022-11-16 09:33:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add new menu linkset endpoint setting.
|
|
|
|
*/
|
|
|
|
function system_post_update_linkset_settings() {
|
|
|
|
$config = \Drupal::configFactory()->getEditable('system.feature_flags');
|
|
|
|
$config->set('linkset_endpoint', FALSE)->save();
|
|
|
|
}
|