X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=setup%2Fclass_setup.inc;h=753751c52537d7e43e28845244038b07f8eea244;hb=d28d35ff763428194c4fe22bb72988473bf44864;hp=a51d922c51e4d8ab6ae2925a88208c63df96b456;hpb=1d999bc19312a3748d2b99f3df3ee9c4cc5f2479;p=gosa.git diff --git a/setup/class_setup.inc b/setup/class_setup.inc index a51d922c5..753751c52 100644 --- a/setup/class_setup.inc +++ b/setup/class_setup.inc @@ -18,8 +18,10 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + require_once("class_setupStep.inc"); + class setup { var $i_steps = 9; // Number of setup steps @@ -40,7 +42,10 @@ class setup $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_Feedback(); $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)){ @@ -50,13 +55,27 @@ class setup } foreach($this->o_steps as $key => $step){ - $this->o_steps[$key]->parent = $this; + $this->o_steps[$key]->parent = &$this; } } - 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']) && preg_match("/Step_Welcome/i",get_class($this->o_steps[1])) && $this->o_steps[1]->is_completed()){ + phpinfo(); + exit(); + } + + /* 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(); @@ -236,7 +255,7 @@ class setup if($this->o_steps[$this->i_current]->dialog){ $str =""; }else{ - $str =""; + $str ="

 

"; $str.="
"; if(isset($this->o_steps[$this->i_current -1]) && $this->o_steps[$this->i_current -1]->is_enabled()){ $str .= ""; @@ -244,11 +263,7 @@ class setup $str .= ""; } $str.= " "; - if(isset($this->o_steps[$this->i_current + 1])){ $str .= ""; - }else{ - $str .= ""; - } $str .="
"; } return($str); @@ -271,6 +286,17 @@ class setup } return(false); } + + function step_name_to_id($name) + { + foreach($this->o_steps as $id => $class){ + if(get_class($class) == $name){ + return($id); + } + } + return(0); + } + }