mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
16 lines
317 B
PHP
16 lines
317 B
PHP
<?php
|
|
|
|
class WizStepModulesChoiceFake extends WizStepModulesChoice
|
|
{
|
|
public function __construct(WizardController $oWizard, $sCurrentState)
|
|
{
|
|
$this->oWizard = $oWizard;
|
|
$this->sCurrentState = $sCurrentState;
|
|
}
|
|
|
|
public function setExtensionMap(iTopExtensionsMap $oMap)
|
|
{
|
|
$this->oExtensionsMap = $oMap;
|
|
}
|
|
}
|