Example #1
0
 function buildWizard($idPage)
 {
     $db = new Database();
     $rows = $db->getWizardQuery($idPage);
     foreach ($rows as $row) {
         $this->title = $row['NB_WIZARD_TITLE'];
         $this->description = $row['NB_WIZARD_DESC'];
         if ($row['NB_WIZARD_SHOW_PROGRESS'] == "true") {
             $this->showProgressBar = true;
         } else {
             $this->showProgressBar = false;
         }
     }
 }