This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id: migrate_paginas | |
label: Archivo de Migracion del tipo de contenido Paginas | |
migration_tags: | |
- content_types | |
source: | |
plugin: url | |
data_fetcher_plugin: file | |
data_parser_plugin: json | |
urls: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id: migrate_users | |
label: 'Users' | |
source: | |
plugin: users | |
key: migrate | |
process: | |
uid: uid | |
name: name | |
mail: mail | |
pass: pass |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Drupal\MODULE_NAME\Plugin\migrate\source; | |
use Drupal\migrate\Annotation\MigrateSource; | |
use Drupal\migrate\Plugin\migrate\source\SqlBase; | |
use Drupal\migrate\Row; | |
/** | |
* Minimalistic example for a SqlBase source plugin. |