コード例 #1
0
ファイル: View.php プロジェクト: BackupTheBerlios/oos-svn
 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;
 }