23 lines
409 B
PHP
23 lines
409 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Contains install and update functions for Migrate Drupal.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_update_last_removed().
|
|
*/
|
|
function migrate_drupal_update_last_removed(): int {
|
|
return 8901;
|
|
}
|
|
|
|
/**
|
|
* Implements hook_uninstall().
|
|
*/
|
|
function migrate_drupal_uninstall($is_syncing): void {
|
|
$state = \Drupal::state();
|
|
$state->delete('migrate_drupal_6');
|
|
$state->delete('migrate_drupal_7');
|
|
}
|