X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fclass_MultiSelectWindow.inc;h=9aec3065250bb7bfea0b514db0804cb09ba554bc;hb=5fb44ad64771094c678181a7e1a4ed0f159b0d5a;hp=cf90a8d01284605c60424d83be2aa24e1a46d768;hpb=d5e3e1e9f91a2d9e7ee609c1ea648e30efe6d5a3;p=gosa.git diff --git a/include/class_MultiSelectWindow.inc b/include/class_MultiSelectWindow.inc index cf90a8d01..9aec30652 100644 --- a/include/class_MultiSelectWindow.inc +++ b/include/class_MultiSelectWindow.inc @@ -154,6 +154,64 @@ class MultiSelectWindow{ $this->array_Elements[] = $arr; } + + /* Return default header part. With back, home and root icons and department selection */ + function get_default_header() + { + $enable_back = TRUE; + $enable_root = TRUE; + $enable_home = TRUE; + + $ui = get_userinfo(); + + /* Check if selectedBase = first available base */ + $deps = $ui->get_module_departments($this->module); + + if(!count($deps) || $deps[0] == $this->selectedBase){ + $enable_back = FALSE; + $enable_root = FALSE; + } + + /* Check if we are in users home department */ + if(!count($deps) ||$this->selectedBase == get_base_from_people($ui->dn)){ + $enable_home = FALSE; + } + + /* Create header with selected base */ + $listhead = "
"; + + /* Draw root button */ + if($enable_root){ + $listhead .= "  "; + }else{ + $listhead .= " "._("Root")." "; + } + + /* Draw back button */ + if($enable_back){ + $listhead .= "  "; + }else{ + $listhead .= " "._("Up")." "; + } + + /* Draw home button */ + if($enable_home){ + $listhead .= "  "; + }else{ + $listhead .= " "._("Home")." "; + } + + /* And at least draw reload button, this button is enabled everytime */ + $listhead .= "  ". + " - "; + + return ($listhead); + } + /* Add a checkbox to the filter element, the name specifies an existing class var to store the 'selection' */ function AddCheckBox($name,$value="Unset",$string="Unset",$default=false) @@ -292,7 +350,7 @@ class MultiSelectWindow{ - @@ -406,25 +464,30 @@ class MultiSelectWindow{ /* back to the roots ^^ */ if($s_action=="root"){ $this->selectedBase=($this->config->current['BASE']); - } + $dep_id = $this->ui->get_module_departments($this->module); + $this->selectedBase = $dep_id[key($dep_id)]; + } - /* If Back-button is pressed, move back one step in DN */ - if($s_action=="back"){ - //FIXME: This is not 100% correct. We'll only display ou's, but there may be - // a step between. You'll stumble in a "hidden" department in this case. - $base_back= preg_replace("/^[^,]+,/", "", $_SESSION['CurrentMainBase']); + /* If Back-button is pressed, move back one step in DN */ + if($s_action=="back"){ - /* The department array keeps non DN entries as index. We need to convert - it before checking the existance. */ - $base_back= trim(convert_department_dn($base_back)); + /* Get parent deprtment and check if we are allowed to step in it */ + $base_back= preg_replace("/^[^,]+,/", "", $_SESSION['CurrentMainBase']); + $dep_id = $this->ui->get_module_departments($this->module); + if(in_array_ics($base_back,$dep_id)){ - /* Check if the department exists, otherwise revert to the configure base DN */ - if(isset($this->config->departments[$base_back])){ - $this->selectedBase= $this->config->departments[$base_back]; - }else{ - $this->selectedBase= $this->config->departments['/']; - } + /* The department array keeps non DN entries as index. We need to convert + it before checking the existance. */ + $base_back= trim(convert_department_dn($base_back)); + + /* Check if the department exists, otherwise revert to the configure base DN */ + if(isset($this->config->departments[$base_back])){ + $this->selectedBase= $this->config->departments[$base_back]; + }else{ + $this->selectedBase= $this->config->departments['/']; + } + } } $_SESSION['CurrentMainBase'] = $this->selectedBase; } @@ -534,7 +597,7 @@ class MultiSelectWindow{ /* this function adds the sub-departments of the current tree to the list */ - function AddDepartments($base = false,$numtabs = 3) + function AddDepartments($base = false,$numtabs = 3,$empty_tabs_in_front = 0) { $this->DepartmentsAdded = true; @@ -572,6 +635,11 @@ class MultiSelectWindow{ } natcasesort($this->departments); + + if($empty_tabs_in_front){ +# $numtabs -= $empty_tabs_in_front; + } + /* Add deps to this dialog object list */ foreach($this->departments as $key=> $val){ @@ -593,19 +661,25 @@ class MultiSelectWindow{ /* Add to divlist */ $row = array(); + + if($empty_tabs_in_front){ + for($i = 0; $i < $empty_tabs_in_front ; $i ++){ + $row[] = array("string"=>" ", "attach" => "style='text-align:center;width:20px;'"); + } + } + $row[]=$field1=array("string"=>"department","attach"=>"style='text-align:center;width:20px;'"); $row[]=$field2=array("string"=>sprintf($linkopen,base64_encode($key),$val), "attach" => "style=''"); if($numtabs > 2){ - for($i = 2 ; $i <$numtabs;$i++){ - if(isset( $this->array_Header[$i]['attach'])){ - $row[] = array("string"=>" ","attach" => $this->array_Header[$i]['attach']); + for($i = 2 ; $i < $numtabs;$i++){ + if(isset( $this->array_Header[$i + $empty_tabs_in_front]['attach'])){ + $row[] = array("string"=>" ","attach" => $this->array_Header[$i + $empty_tabs_in_front]['attach']); }else{ $row[] = array("string"=>" "); } } } - $this->AddElement($row); } }