From a739ec8471226c49a91a76c271a6bdb4867d026a Mon Sep 17 00:00:00 2001 From: hickert Date: Thu, 20 May 2010 13:46:32 +0000 Subject: [PATCH] Updated setup -Removed hundreds of git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18604 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/setup/class_setup.inc | 453 +++++++++++++++----------------- gosa-core/setup/setup.tpl | 4 - gosa-core/setup/setup_frame.tpl | 73 +++-- 3 files changed, 239 insertions(+), 291 deletions(-) delete mode 100644 gosa-core/setup/setup.tpl diff --git a/gosa-core/setup/class_setup.inc b/gosa-core/setup/class_setup.inc index 88a8cf829..36bf76209 100644 --- a/gosa-core/setup/class_setup.inc +++ b/gosa-core/setup/class_setup.inc @@ -25,279 +25,244 @@ require_once("class_setupStep.inc"); class setup { - 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() - { - $i = 1; - $this->o_steps[$i++] = new Step_Welcome(); + 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() + { + $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_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_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)){ - session::destroy(); - header("Location: index.php") ; - exit(); - } - - foreach($this->o_steps as $key => $step){ - $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(); + $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)){ + session::destroy(); + header("Location: index.php") ; + exit(); + } + + foreach($this->o_steps as $key => $step){ + $this->o_steps[$key]->parent = &$this; + } } - /* display step error msgs */ - $msgs = $this->o_steps[$this->i_current]->check(); - foreach($msgs as $msg){ - msg_dialog::display(_("Setup error"), $msg, ERROR_DIALOG); + 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){ + msg_dialog::display(_("Setup error"), $msg, ERROR_DIALOG); + } + + $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(); + return($content); } - $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(); - return($content); - } + /* Save posted attributes */ + function save_object() + { + /* Call save_object for current setup step */ + $this->o_steps[$this->i_current] -> save_object(); - /* Save posted attributes */ - function save_object() - { - /* Call save_object for current setup step */ - $this->o_steps[$this->i_current] -> save_object(); + /* Get attributes from setup step */ + $tmp = $this->o_steps[$this->i_current]->get_attributes(); + foreach($tmp as $name => $value){ + $this->captured_values[$name] = $value; + } - /* Get attributes from setup step */ - $tmp = $this->o_steps[$this->i_current]->get_attributes(); - foreach($tmp as $name => $value){ - $this->captured_values[$name] = $value; - } + /* Set parent */ + foreach($this->o_steps as $key => $value){ + $this->o_steps[$key]->parent = $this; + } - /* Set parent */ - foreach($this->o_steps as $key => $value){ - $this->o_steps[$key]->parent = $this; - } + /* Check if image button requests next page */ + foreach($_POST as $name => $value){ + if(preg_match("/^next_(x|y)/",$name)){ + $_POST['next'] = TRUE; + } + if(preg_match("/^last_(x|y)/",$name)){ + $_POST['last'] = TRUE; + } + } - /* Check if image button requests next page */ - foreach($_POST as $name => $value){ - if(preg_match("/^next_(x|y)/",$name)){ - $_POST['next'] = TRUE; - } - if(preg_match("/^last_(x|y)/",$name)){ - $_POST['last'] = TRUE; - } - } + /* Check if step was selected */ + if(isset($_GET['step']) || isset($_POST['next']) || isset($_POST['last'])){ + + /* check if current setup step is completed now + and activate the next step if possible */ + for($i = 1 ; $i <= $this->i_steps ; $i ++ ){ + if($this->o_steps[$i]->is_completed()){ + if(isset($this->o_steps[($i+1)])){ + $this->o_steps[($i+1)]->set_enabled(); + } + }else{ + $this->disable_steps_from($i+1); + } + } + } - /* Check if step was selected */ - if(isset($_GET['step']) || isset($_POST['next']) || isset($_POST['last'])){ + /* 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); + } + } - /* check if current setup step is completed now - and activate the next step if possible */ - for($i = 1 ; $i <= $this->i_steps ; $i ++ ){ - if($this->o_steps[$i]->is_completed()){ - if(isset($this->o_steps[($i+1)])){ - $this->o_steps[($i+1)]->set_enabled(); - } - }else{ - $this->disable_steps_from($i+1); + $step = -1; + + if(isset($_POST['setup_goto_step'])){ + $step= $_POST['setup_goto_step']; } - } - } - - /* 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($_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; + } - 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); - } - } + $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; - } + 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); - } + if($found){ + $this->o_steps[$key]->set_enabled(false); + $this->o_steps[$key]->set_completed(false); + } + } } - } - - - /* Create navigation menu */ - function get_navigation_html() - { - $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(); - - if($b_completed){ - $s = ""._("Completed")." "; - }else{ - $s = "  "; - } - - if(session::get('js')){ - - $str .="
"; - - if($b_enabled){ - if($b_active){ - $str .= ""; - }else{ - $str .= ""; - } - }else{ - $str .= ""; + + + /* Create navigation menu */ + function get_navigation_html() + { + $str = "
    "; + $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(); + + if($b_completed){ + $s = ""._("Completed")." "; + }else{ + $s = "  "; + } + + if($b_enabled){ + if($b_active){ + $str .= "
  • ".$s.$s_title."
  • "; + }else{ + $str .= "
  • ".$s.$s_title."
  • "; + } + }else{ + $str .= "
  • ".$s.$s_title."
  • "; + } } - $str .= "
" ; - }else{ - $str .="
"; - if($b_enabled){ - if($b_active){ - $str .= ""; - }else{ - $str .= ""; - } + $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 .= "
" ; - } + return($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 .="
"; + + + /* Create header entry */ + function get_header_html() + { + $str= $this->o_steps[$this->i_current]->print_header(); + return ($str); } - return($str); - } - - - /* Create header entry */ - function get_header_html() - { - $str= $this->o_steps[$this->i_current]->print_header(); - return ($str); - } - - - /* Check if the given step id is valid and selectable */ - function selectable_step($id) - { - if(isset($this->o_steps[$id]) && $this->o_steps[$id]->is_enabled()){ - return(true); + + + /* Check if the given step id is valid and selectable */ + function selectable_step($id) + { + if(isset($this->o_steps[$id]) && $this->o_steps[$id]->is_enabled()){ + return(true); + } + return(false); } - return(false); - } - - function step_name_to_id($name) - { - foreach($this->o_steps as $id => $class){ - if(get_class($class) == $name){ - return($id); - } + + function step_name_to_id($name) + { + foreach($this->o_steps as $id => $class){ + if(get_class($class) == $name){ + return($id); + } + } + return(0); } - return(0); - } - + } diff --git a/gosa-core/setup/setup.tpl b/gosa-core/setup/setup.tpl deleted file mode 100644 index 3bb21f795..000000000 --- a/gosa-core/setup/setup.tpl +++ /dev/null @@ -1,4 +0,0 @@ -
-{$php_errors} -sadffasdsdfa -
diff --git a/gosa-core/setup/setup_frame.tpl b/gosa-core/setup/setup_frame.tpl index f6554f514..8d20ad7fc 100644 --- a/gosa-core/setup/setup_frame.tpl +++ b/gosa-core/setup/setup_frame.tpl @@ -1,47 +1,34 @@ - -{$php_errors} -
- {$msg_dialogs} - -
-
-
GOsa
-
{$version}
-
-
- {t}GOsa setup wizard{/t} -
+ + {$php_errors} +
+
    +
  • +
  • {t}GOsa setup wizard{/t}
  • +
  • {$version}
  • +
+
-
+ + {$msg_dialogs} -
-
- {t}Installation{/t}  {t}Setup{/t} -
- {$navigation} -
- -
-
- {$errors} - {$header} -
-
- {$contents} - {$bottom} -
-
-
-
-
-
+
+ - - -
- - - +
+
+ {$errors} + {$header} +
+ {$contents} +
+ {$bottom} +
+
+ + + -- 2.30.2