/wizard

A TYPO3 extension that enables the user to clone entire sites

Primary LanguagePHP

TYPO3 Sudhaus7 Wizard

Latest Stable Version Build Status Total Downloads Monthly Downloads

A TYPO3 Plugin for duplicating Sites

Changelog

0.2.0

  • Breaking change: Update in WizardProcessInterface - in getTemplateBackendUserGroup and getTemplateBackendUser the CreateProcess Object is now added as a parameter. Please update your implementations for this Interface accordingly
public function getTemplateBackendUser(CreateProcess $pObj): array;
public function getTemplateBackendUserGroup(CreateProcess $pObj): array;

0.2.0

  • Breaking change: Update in WizardTemplateConfigInterface - please add at least the following lines to your implementations of this interface:
public function modifyRecordTCA(array $TCA): array
{
    return $TCA;
}