Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / migrate_drupal / migrate_drupal.install
1 <?php
2
3 /**
4  * @file
5  * Contains install and update functions for Migrate Drupal
6  */
7
8 /**
9  * Creates migrate_drupal.settings config object.
10  */
11 function migrate_drupal_update_8501() {
12   \Drupal::configFactory()
13     ->getEditable('migrate_drupal.settings')
14     ->set('enforce_source_module_tags', ['Drupal 6', 'Drupal 7'])
15     ->save();
16 }