Mit der Version 9 von in2code/migration habt ihr nun die Möglichkeit automatisch von gridelementsteam/gridelements nach b13/container zu migrieren. Und wie immer gilt beim Einsatz von in2code/migration, dass man wissen sollte welche Daten von welchem Tabellenfeld in welches übertragen werden sollen. Das haben wir schon mal für euch gemacht und auf unserem Whiteboard aufgemalt. Im Prinzip dreht sich alles um die Tabelle tt_content und die Inhalte darin:
Ihr müsst also wissen, wie die Layouts (vorher tt_content.tx_gridelements_backend_layout und nachher tt_content.CType) heißen. Darüber hinaus sollten ihr auch wissen, wie die Columns migriert werden sollen (vorher tt_content.tx_gridelements_columns und nachher tt_content.colPos). Das packt ihr in eure ContentMigration mit Hilfe zweier neuer PropertyHelper Klassen. Das Ganze kann dann z.B. so in ContentMigrator.php aussehen:
<?php
declare(strict_types=1);
namespace In2code\MigrationExtend\Migration\Migrator;
use In2code\Migration\Migration\Migrator\AbstractMigrator;
use In2code\Migration\Migration\Migrator\MigratorInterface;
use In2code\Migration\Migration\PropertyHelpers\GridelementsToContainerChildrenPropertyHelper;
use In2code\Migration\Migration\PropertyHelpers\GridelementsToContainerParentPropertyHelper;
/**
* Class ContentMigrator
*/
class ContentMigrator extends AbstractMigrator implements MigratorInterface
{
/**
* @var string
*/
protected $tableName = 'tt_content';
/**
* @var array
*/
protected $propertyHelpers = [
'_dummy' => [
[
'className' => GridelementsToContainerParentPropertyHelper::class,
'configuration' => [
'types' => [
// tt_content.tx_gridelements_backend_layout => tt_content.CType
1 => 'container-50-50',
3 => 'container-33-33-33',
4 => 'container-70-30',
5 => 'container-30-70',
10 => 'container-accordion',
11 => 'container-tab',
12 => 'container-container',
],
],
],
[
'className' => GridelementsToContainerChildrenPropertyHelper::class,
'configuration' => [
'columns' => [
// old value in tt_content.tx_gridelements_backend_layout
1 => [
// tt_content.tx_gridelements_columns => tt_content.colPos
12 => 12,
22 => 22,
],
3 => [
1 => 12,
2 => 22,
3 => 32,
],
4 => [
1 => 12,
2 => 22,
],
5 => [
1 => 12,
2 => 22,
],
10 => [
0 => 12,
],
11 => [
0 => 12,
],
12 => [
0 => 12,
],
],
],
],
],
];
}
So würde dann die Konfigurationsdatei Migration.php aussehen:
<?php
return [
// Default values if not given from CLI
'configuration' => [
'key' => '',
'dryrun' => true,
'limitToRecord' => null,
'limitToPage' => 0,
'recursive' => true
],
// Define your migrations
'migrations' => [
[
'className' => \In2code\MigrationExtend\Migration\Migrator\ContentMigrator::class,
'keys' => [
'content',
]
],
]
];
Und danach könnt ihr die Migration wie gewohnt über die CLI starten:
./vendor/bin/typo3cms migration:migrate --configuration EXT:migration_extend/Configuration/Migration.php --key content --dryrun 0
Viel Spaß beim Migrieren
P.S.: Wenn ihr nach der Migration im Backend die Fehlermeldung "Unused elements detected on this page" erhaltet, hiflt der Aufruf des Comands container:fixContainerParentForConnectedModeCommand