예제 #1
0
 function __construct($subtemplatePath, $installationSteps, $currentStepName)
 {
     parent::__construct($this->mainTemplate);
     $this->subTemplateToLoad = $subtemplatePath;
     $this->steps = $installationSteps;
     $this->currentStepName = $currentStepName;
     $this->showNextStep = false;
 }
예제 #2
0
파일: View.php 프로젝트: Doluci/tomatocart
 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;
 }