Plugins¶
If you like, you can migrate plugins only.
Keys¶
The name of a script is defined by the property key. These keys are available:
plugins
plugins¶
Plugins will migrated from tt_news to tx_org.
If you want to know which fields are being migrated, please take a look at the code of
Classes/Migration/Importer/PluginImporter.php
Samples¶
dryrun is true by default.
Test all tt_news plugins¶
Run the migration script for tt_news plugins only without any execution (dryrun):
vendor/bin/typo3cms migration:migrate \
--configuration EXT:migration_ttnews2orgxblog/Configuration/Migration.php \
--key plugins
Special folder, tt_news plugins only¶
Run migration script "plugins" for the page/folder with the id 160 only and without any execution (dryrun):
vendor/bin/typo3cms migration:migrate \
--configuration EXT:migration_ttnews2orgxblog/Configuration/Migration.php \
--key plugins \
--limitToPage 160 \
--recursive 0
Run all tt_news plugins¶
Run the migration script for all tt_news plugins:
vendor/bin/typo3cms migration:migrate \
--configuration EXT:migration_ttnews2orgxblog/Configuration/Migration.php \
--key plugins \
--dryrun 0