N°9412 - wip

This commit is contained in:
Eric Espie
2026-05-12 16:40:26 +02:00
parent 4ff0f3c4a0
commit 39b131e102
3 changed files with 55 additions and 26 deletions

View File

@@ -0,0 +1,47 @@
<?php
/*
* @copyright Copyright (C) 2010-2026 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
*/
class WizStepLandingBeforeAudit extends WizardStep
{
/**
* @inheritDoc
*/
public function Display(SetupPage $oPage): void
{
}
/**
* @inheritDoc
*/
public function UpdateWizardStateAndGetNextStep(bool $bMoveForward = true): WizardState
{
return new WizardState(WizStepDataAudit::class);
}
/**
* @inheritDoc
*/
public function GetTitle()
{
return 'Before checking compatibility';
}
public function GetPossibleSteps()
{
return [WizStepDataAudit::class];
}
public function GetNextButtonLabel()
{
return 'Next';
}
public function CanComeBack()
{
return false;
}
}