X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=setup%2Fclass_setup.inc;h=700ea7761d84047d0aa46178782eedcf07b323e6;hb=68503ecbb4d310b61ef8f1f32003fc739bacb237;hp=f59d5f68bd0f93cdc040017aed37f9b79a63d285;hpb=07e10f94b3d3d7cdfb4a800dcc50ad0d5d1aad8a;p=gosa.git diff --git a/setup/class_setup.inc b/setup/class_setup.inc index f59d5f68b..700ea7761 100644 --- a/setup/class_setup.inc +++ b/setup/class_setup.inc @@ -22,32 +22,49 @@ require_once("class_setupStep.inc"); class setup { - - var $i_steps = 7; // Number of setup steps + var $i_steps = 9; // Number of setup steps var $i_current= 1; // Current step var $i_last = 1; // Last setup step; var $o_steps = array(); - var $captured_values = array(); function setup() { - for($i = 1 ; $i <= $this->i_steps; $i ++ ){ - $class= "setup_step_".$i; + $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)){ + session_destroy(); + header("Location: index.php") ; + exit(); + } - if(class_exists($class)){ - $this->o_steps[$i] = new $class(); - }else{ - $this->o_steps[$i] = new setup_step(); - trigger_error("Try to create class '".$class."' but it is not available, possibly you have forgotten to add the include in setup.php"); - } - $this->o_steps[$i]->parent = $this; + foreach($this->o_steps as $key => $step){ + $this->o_steps[$key]->parent = $this; } } + function execute() { - $smarty = get_smarty(); + /* 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(); @@ -92,20 +109,59 @@ class setup if(isset($this->o_steps[($i+1)])){ $this->o_steps[($i+1)]->set_enabled(); } + }else{ + $this->disable_steps_from($i+1); } } + } + + /* Disable all following steps, if one step isn't compelted right now .*/ + for($i = 1 ; $i <= $this->i_steps ; $i ++ ){ + if($this->o_steps[$i]->is_completed()){ + }else{ + $this->disable_steps_from($i+1); + } + } + + $step = -1; - if(isset($_GET['step'])){ - $step = $_GET['step']; - }elseif(isset($_POST['next'])){ - $step = $this->i_current + 1; - }elseif(isset($_POST['last'])){ - $step = $this->i_current - 1; + if(isset($_POST['setup_goto_step'])){ + $step= $_POST['setup_goto_step']; + } + + if(isset($_GET['step'])){ + $step = $_GET['step']; + }elseif(isset($_POST['next'])){ + $step = $this->i_current + 1; + }elseif(isset($_POST['last'])){ + $step = $this->i_current - 1; + } + + $once = true; + foreach($_POST as $name => $value){ + if(preg_match("/^step_[0-9]*$/",$name) && $once ){ + $step = preg_replace("/^step_/","",$name); } + } + + if($this->selectable_step($step)){ + $this->i_last = $this->i_current; + $this->i_current = $step; + } + } + - if($this->selectable_step($step)){ - $this->i_last = $this->i_current; - $this->i_current = $step; + function disable_steps_from($start) + { + $found = false; + foreach($this->o_steps as $key => $step){ + if($key == $start){ + $found = true; + } + + if($found){ + $this->o_steps[$key]->set_enabled(false); + $this->o_steps[$key]->set_completed(false); } } } @@ -117,29 +173,87 @@ class setup $str = ""; foreach($this->o_steps as $key => $step){ + $step -> update_strings(); + $s_title = $step -> get_title(); $s_info = $step -> get_small_info(); $b_active = $step -> is_active(); $b_enabled = $step -> is_enabled(); + $b_completed= $step -> is_completed(); - $str .="
"; - if($b_enabled){ - if($b_active){ - $str .= ""; - $str .= ""; - $str .= ""; - $str .= "
\n"; + if($b_completed){ + $s = ""._("Completed")." "; + }else{ + $s = "  "; + } + + if($_SESSION['js']){ + + $str .="
"; + + if($b_enabled){ + if($b_active){ + $str .= ""; + }else{ + $str .= ""; + } }else{ - $str .= ""; - $str .= ""; - $str .= "
\n"; + $str .= ""; } + $str .= "
" ; }else{ - $str .= ""; + $str .="
"; + if($b_enabled){ + if($b_active){ + $str .= ""; + }else{ + $str .= ""; + } + }else{ + $str .= ""; + } + $str .= "
" ; + } + } + return($str); + } + + + + function get_bottom_html() + { + /* 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 ="

 

"; + $str.="
"; + if(isset($this->o_steps[$this->i_current -1]) && $this->o_steps[$this->i_current -1]->is_enabled()){ + $str .= ""; + }else{ + $str .= ""; } - $str .= "
" ; + $str.= " "; + $str .= ""; + $str .="
"; } return($str); } @@ -148,26 +262,7 @@ class setup /* Create header entry */ function get_header_html() { - $str =""; - $str.="
"; - $str.="
"; - $str.=" "; - $str.= $this->o_steps[$this->i_current]->get_long_title(); - $str.=" "; - $str.="
"; - $str.="
"; - if(isset($this->o_steps[$this->i_current -1]) && $this->o_steps[$this->i_current -1]->is_enabled()){ - $str.=" "; - }else{ - $str.=" "; - } -# if(isset($this->o_steps[$this->i_current +1]) && $this->o_steps[$this->i_current +1]->is_enabled()){ - $str.=" "; -# }else{ -# $str.=" "; -# } - $str.= "
"; - $str.= "
"; + $str= $this->o_steps[$this->i_current]->print_header(); return ($str); }