linawolf / list-type-migration
List type to CType migration, backward compatible for TYPO3 v11 and v12
Installs: 66
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Language:Shell
Type:typo3-cms-extension
Requires
- php: ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3
- typo3/cms-install: ^11.5 || ^12.4 || ^13.4
Requires (Dev)
- ergebnis/composer-normalize: ^2.43
- phpstan/phpstan: ^1.8.2
- typo3/coding-standards: *
This package is auto-updated.
Last update: 2024-10-24 08:39:57 UTC
README
To offer a migration path for an extension that supports both TYPO3 v12 and v13,
extend Linawolf\ListTypeMigration\Upgrades\AbstractListTypeToCTypeUpdate
:
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\Upgrades;
use Linawolf\ListTypeMigration\Upgrades\AbstractListTypeToCTypeUpdate;
use TYPO3\CMS\Install\Attribute\UpgradeWizard;
#[UpgradeWizard('myExtensionPluginListTypeToCTypeUpdate')]
final class PluginListTypeToCTypeUpdate extends AbstractListTypeToCTypeUpdate
{
protected function getListTypeToCTypeMapping(): array
{
return [
'my_extension_pi1' => 'my_extension_pi1',
'my_extension_pi2' => 'my_extension_newpluginname',
];
}
public function getTitle(): string
{
return 'Migrates my_extension plugins';
}
public function getDescription(): string
{
return 'Migrates my_extension_pi1, my_extension_pi2 from list_type to CType. ';
}
}
If you also have to be compatible with TYPO3 v11, register the Upgrade Wizard manually: https://docs.typo3.org/m/typo3/reference-coreapi/11.5/en-us/ExtensionArchitecture/HowTo/UpdateExtensions/UpdateWizards/Creation.html#upgrade-wizards-register