Exemplo n.º 1
0
 function ShowStepNoError()
 {
     $this->content = GetMessage('CLUWIZ_STEP1_CONTENT');
     $this->content .= "<br />";
     $obCheck = new CClusterDBNodeCheck();
     $arCheckList = array_merge($obCheck->MainNodeCommon(CClusterDBNode::GetByID(1)), $obCheck->MainNodeForReplication(CClusterDBNode::GetByID(1)), $obCheck->MainNodeForSlave());
     $this->ShowCheckList($arCheckList);
     if ($this->CheckListHasNoError($arCheckList)) {
         $this->SetNextStep("step2");
     } else {
         $this->SetNextStep("step1");
     }
 }