sudhaus7 / wizard

A TYPO3 extension that enables the user to clone entire sites

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TYPO3 Sudhaus7 Wizard

Latest Stable Version Build Status Total Downloads Monthly Downloads

A TYPO3 Plugin for duplicating Sites

Changelog 0.4.0

  • breaking change a Source has been defined from SourceInterface. Sources need now a connection to the CreateProcess. Upgrade your source by adding this code-snippet:
use SUDHAUS7\Sudhaus7Wizard\CreateProcess;

protected ?CreateProcess $createProcess = null;

public function getCreateProcess(): CreateProcess
{
    if ($this->createProcess === null) {
        throw new \InvalidArgumentException('Create Process must be defined', 1715795482);
    }
    return $this->createProcess;
}

public function setCreateProcess( CreateProcess $createProcess ): void
{
    $this->createProcess = $createProcess;
}

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;
}

About

A TYPO3 extension that enables the user to clone entire sites


Languages

Language:PHP 94.4%Language:Shell 5.6%