Example #1
0
 function __construct($subtemplatePath, $installationSteps, $currentStepName)
 {
     parent::__construct($this->mainTemplate);
     $this->subTemplateToLoad = $subtemplatePath;
     $this->steps = $installationSteps;
     $this->currentStepName = $currentStepName;
     $this->showNextStep = false;
 }
Example #2
0
 function __construct($subtemplatePath, $installationSteps, $currentStepName)
 {
     parent::__construct($this->mainTemplate);
     $this->subTemplateToLoad = $subtemplatePath;
     $this->steps = array_keys($installationSteps);
     $this->allStepsTitle = array_values($installationSteps);
     $this->currentStepName = $currentStepName;
     $this->showNextStep = false;
 }