-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Drupal 10 Development Cookbook
By :

From time to time, you will encounter the need to migrate data into Drupal, which comes in various formats. One such popular format is CSV, or a comma-separated value. CSV files can be exported from various database clients and spreadsheet software and make an excellent data source candidate for migrations.
From here, we are going to need to add two modules to migrate from CSV files. Using Composer, download the following modules:
You will also need to create a custom module where we will place our migration definitions, source plugins, and process plugin classes. At this point, you should be familiar with creating a custom module. Consult the previous chapters if you need to refresh.
When you...