Blog

This is my blog archive. I write from time to time. Feel free to look around!

Drupal Migrate API: Migrate content from a JSON source

Posted on July 20, 2019

Migrate API Migration plugins are the glue that binds a source, a destination, and multiple process plugins together to move data from one place to another. Often referred to as migration templates, or simply migrations, migration plugins are YAML files that explain to Drupal where to get the data, how to process it, and where to save the resulting object. Migrations is an Extract - Transform - Load (ETL) process: extract phase is called source transform phase is called process load phase...