"post_update" हुक जो चलाए गए हैं, उन्हें डेटाबेस में संग्रहीत किया जाता है, key_value
तालिका में, post_update
संग्रह, लेकिन डेटा को क्रमबद्ध और सीधे अपडेट करने के लिए अजीब है।
मैंने ड्रि लिपि बनाने के लिए @ kiamlaluno के उत्तर से कुछ विवरणों का उपयोग किया, जिसका उपयोग आप एकल हुक को रीसेट करने के लिए कर सकते हैं। यहां एक मूल संस्करण ( लंबा संस्करण यहां है ):
#!/usr/bin/env drush
$key_value = \Drupal::keyValue('post_update');
$update_list = $key_value->get('existing_updates');
$choice = drush_choice($update_list, dt('Which post_update hook do you want to reset?'));
if ($choice) {
$removed_el = $update_list[$choice];
unset($update_list[$choice]);
$key_value->set('existing_updates', $update_list);
drush_print("$removed_el was reset");
} else {
drush_print("Reset was cancelled");
}
और यहाँ एक उदाहरण है कि यह कैसा दिखता है जब आप इसे कमांड लाइन से चलाते हैं:
./scripts/reset_hook_post_update_NAME.drush
Which post_update hook do you want to reset?
[0] : Cancel
[1] : system_post_update_add_region_to_entity_displays
[2] : system_post_update_hashes_clear_cache
[3] : system_post_update_recalculate_configuration_entity_dependencies
[4] : system_post_update_timestamp_plugins
[5] : my_module_post_update_example_hook
# The script pauses for user input.
5
my_module_post_update_example_hook was reset