comparison core/modules/migrate_drupal/migrate_drupal.install @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents 1fec387a4317
children 129ea1e6d783
comparison
equal deleted inserted replaced
15:e200cb7efeb3 16:c2387f117808
12 \Drupal::configFactory() 12 \Drupal::configFactory()
13 ->getEditable('migrate_drupal.settings') 13 ->getEditable('migrate_drupal.settings')
14 ->set('enforce_source_module_tags', ['Drupal 6', 'Drupal 7']) 14 ->set('enforce_source_module_tags', ['Drupal 6', 'Drupal 7'])
15 ->save(); 15 ->save();
16 } 16 }
17
18 /**
19 * Sets the follow-up migration tags.
20 */
21 function migrate_drupal_update_8502() {
22 \Drupal::configFactory()
23 ->getEditable('migrate_drupal.settings')
24 ->set('follow_up_migration_tags', ['Follow-up migration'])
25 ->save();
26 }