Code

Added info parameter, to display phpinfo().
[gosa.git] / setup / class_setup.inc
index c00ad32e4dea7d0ace7d0dd5704c13c725d05ca8..d1d73fb8ae7c778ea78f4777e4f28c33eac36707 100644 (file)
@@ -30,16 +30,19 @@ class setup
 
   function setup()
   {
-    
-    $this->o_steps[1] = new Step_Language();
-    $this->o_steps[2] = new Step_Checks();
-    $this->o_steps[3] = new Step_License();
-    $this->o_steps[4] = new Step_Ldap();
-    $this->o_steps[5] = new Step_Schema();
-    $this->o_steps[6] = new Step_Config1();
-    $this->o_steps[7] = new Step_Config2();
-    $this->o_steps[8] = new Step_Config3();
-    $this->o_steps[9] = new Step_Finish();
+    $i = 1; 
+    $this->o_steps[$i++] = new Step_Welcome();
+    $this->o_steps[$i++] = new Step_Language();
+    $this->o_steps[$i++] = new Step_Checks();
+    $this->o_steps[$i++] = new Step_License();
+    $this->o_steps[$i++] = new Step_Ldap();
+    $this->o_steps[$i++] = new Step_Schema();
+    $this->o_steps[$i++] = new Step_Config1();
+    $this->o_steps[$i++] = new Step_Config2();
+    $this->o_steps[$i++] = new Step_Config3();
+    $this->o_steps[$i++] = new Step_Migrate();
+    $this->o_steps[$i++] = new Step_Finish();
+    $this->i_steps = $i-1;
 
     /* Ensure that setup is not reachable if gosa.conf (CONFIG_FILE) */
     if(file_exists(CONFIG_DIR."/".CONFIG_FILE)){
@@ -56,6 +59,20 @@ class setup
 
   function execute()
   {
+    /* Display phpinfo() dialog when $_GET['info'] is set,
+     *  but only do this, if user is allowed to use the setup.
+     * If setupStep_Welcome is_completed, we are allowed to view those infos-
+     */
+    if(isset($_GET['info']) && get_class($this->o_steps[1]) == "Step_Welcome" && $this->o_steps[1]->is_completed()){
+      phpinfo();
+    }
+
+    /* display step error msgs */
+    $msgs = $this->o_steps[$this->i_current]->check();
+    foreach($msgs as $msg){
+      print_red($msg);
+    }
+
     $this->o_steps[$this->i_last]->set_active(FALSE);
     $this->o_steps[$this->i_current]->set_active();
     $content = $this->o_steps[$this->i_current]->execute();
@@ -185,10 +202,8 @@ class setup
         if($b_enabled){
           if($b_active){
             $str .= "<div class='navigation_element_active'>";
-            $str .= "<div onClick='document.mainform.setup_goto_step.value=\"$key\";document.mainform.submit();'
-              class='navigation_title_active'>".$s.$s_title."</div>";
-            $str .= "<div onClick='document.mainform.setup_goto_step.value=\"$key\";document.mainform.submit();'
-              class='navigation_info'>".$s_info."</div>";
+            $str .= "<div class='navigation_title_active'>".$s.$s_title."</div>";
+            $str .= "<div class='navigation_info'>".$s_info."</div>";
             $str .= "</div>";
           }else{
             $str .= "<div class='navigation_element'>";
@@ -208,7 +223,7 @@ class setup
           if($b_active){
             $str .= "<div class='navigation_element_active'>";
             $str .= "<input style='text-align: left; color: #00008F; font-weight: bold; width:100%;' 
-                        type='submit' value='".$s_title."' name='step_".$key."'>";
+                        type='button' value='".$s_title."' name='step_".$key."'>";
             $str .= "</div>";
           }else{
             $str .= "<div class='navigation_element'>";
@@ -231,20 +246,23 @@ class setup
 
   function get_bottom_html()
   {
-    $str ="";
-    $str.="   <div style='text-align:right;float:top;'>";
-    if(isset($this->o_steps[$this->i_current -1]) && $this->o_steps[$this->i_current -1]->is_enabled()){
-      $str .= "<input type='submit' name='last' value='"._("Back")."'>";
-    }else{
-      $str .= "<input type='button' name='last' value='"._("Back")."' disabled>";
-    }
-    $str.= "&nbsp;";
-    if(isset($this->o_steps[$this->i_current + 1])){
-      $str .= "<input type='submit' name='next' value='"._("Continue")."'>";
+    /* Skip adding forward/backward button,   
+     *  if the currently opened step is a sub dialog 
+     */
+    if($this->o_steps[$this->i_current]->dialog){
+      $str ="";
     }else{
-      $str .= "<input type='button' value='"._("Continue")."' disabled>";
+      $str ="<p class='seperator' style='margin-bottom:10px;'>&nbsp;</p>";
+      $str.="   <div style='text-align:right;float:top;'>";
+      if(isset($this->o_steps[$this->i_current -1]) && $this->o_steps[$this->i_current -1]->is_enabled()){
+        $str .= "<input type='submit' name='last' value='"._("Back")."'>";
+      }else{
+        $str .= "<input type='button' name='last' value='"._("Back")."' disabled>";
+      }
+      $str.= "&nbsp;";
+        $str .= "<input type='submit' name='next' value='"._("Continue")."'>";
+      $str .="</div>";
     }
-    $str .="</div>";
     return($str);
   }