Çalıştırılan "post_update" kancaları veritabanında, key_value
tabloda, post_update
koleksiyonda saklanır , ancak veriler serileştirilir ve doğrudan güncellenmesi zor olur.
@ Kiamlaluno'nun cevabındaki bazı ayrıntıları, tek bir kancayı sıfırlamak için kullanabileceğiniz bir komut dosyası oluşturmak için kullandım. İşte temel bir sürüm ( daha uzun sürüm burada ):
#!/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");
}
Ve komut satırından çalıştırdığınızda nasıl göründüğüne bir örnek:
./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