X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fclass_MultiSelectWindow.inc;h=aefb8b8f365c2966ed39e0ed0ffe15059cde63fd;hb=382443db9d291ebe40f97a94534a0913f7c0a6ef;hp=5f23bdeb131dda8e164665ca7815e46b5f906284;hpb=6d28c60d2a96d17539c2cd4274447d54166e06ef;p=gosa.git diff --git a/include/class_MultiSelectWindow.inc b/include/class_MultiSelectWindow.inc index 5f23bdeb1..aefb8b8f3 100644 --- a/include/class_MultiSelectWindow.inc +++ b/include/class_MultiSelectWindow.inc @@ -13,6 +13,7 @@ class MultiSelectWindow{ var $string_Title = ""; var $string_ListHeader = ""; + var $string_ListDropDown= ""; var $string_Summary = ""; var $string_Information = ""; @@ -27,12 +28,13 @@ class MultiSelectWindow{ var $is_headpage = false; // if true the design changes var $filterName = "Liste"; var $DepartmentsAdded = false; + var $Added_Departments = array(); var $selectedBase = ""; var $DivHeight = ""; var $HideFilterPart = false; - + var $List_Bottom_Info = ""; var $SaveAdditionalVars = array(); // Additional Post vars to store var $module= ""; @@ -72,15 +74,43 @@ class MultiSelectWindow{ $this->array_Regexes[] = $arr; } + + function SetDropDownHeaderMenu($str) + { + $this->string_ListDropDown = $str; + } + + function GetDropDownHeaderMenu() + { + if(!empty($this->string_ListDropDown)){ + $mid = new LayersMenu(6, 7, 2, 1); + $mid->setImgwww("./images/"); + $mid->setIcondir("./images/"); + $mid->setDirroot("../include/php_layers_menu/"); + $mid->setHorizontalMenuTpl("../ihtml/".get_template_path("",FALSE).'GOsa_MultiSelectHeader.ihtml'); + $mid->setSubMenuTpl("../ihtml/".get_template_path("",FALSE).'GOsa_MultiSelectHeaderSubEntry.ihtml'); + $mid->setMenuStructureString($this->string_ListDropDown); + $mid->parseStructureForMenu('menu'); + $mid->newHorizontalMenu('menu'); + $s = $mid->getHeader(); + $s.= $mid->getMenu('menu'); + $s.= $mid->getFooter('menu'); + return($s); + }else{ + return(""); + } + } + + /* Contrucktion */ - function MultiSelectWindow($config, $filterName, $module) + function MultiSelectWindow(&$config, $filterName, $module) { - $this->config = $config; + $this->config = &$config; $this->module = $module; $this->SaveButtonString = _("Save"); $this->CloseButtonString = _("Close"); $this->filterName = $filterName; - + $this->ui = get_userinfo(); $this->selectedBase = $_SESSION['CurrentMainBase']; /* Check default values for SaveAdditionalVars */ @@ -171,15 +201,14 @@ class MultiSelectWindow{ $enable_back = FALSE; $enable_root = FALSE; } - + + $listhead =""; + /* 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 .= " string_Title); $divlist->SetSummary($this->string_Summary); - $divlist->SetEntriesPerPage(0); // 0 for scrollable list + $divlist->SetEntriesPerPage(0); // 0 for scrollable list + + /* Display list footer with summary of all listed entries */ + if(isset($this->config->data['MAIN']['LIST_SUMMARY']) && preg_match("/true/i",$this->config->data['MAIN']['LIST_SUMMARY'])){ + $divlist->SetFooter($this->get_List_Bottom_Info()); + } if($this->DivHeight != ""){ $divlist->SetHeight($this->DivHeight); @@ -369,7 +403,8 @@ class MultiSelectWindow{ */ $smarty->assign("Display_alphabet", $this->bool_DisplayAlpahabet); $smarty->assign("alphabet", generate_alphabet()); - $smarty->assign("Header" , $this->string_ListHeader ); + $smarty->assign("Header" , $this->string_ListHeader); + $smarty->assign("HeaderDropDown", $this->GetDropDownHeaderMenu()); $smarty->assign("Summary" , $this->string_Summary); $smarty->assign("Title" , $this->string_Title); $smarty->assign("Information" , $this->string_Information); @@ -425,72 +460,72 @@ class MultiSelectWindow{ $this->config = $this->parent->config; } - /* Update current base */ - if($this->DepartmentsAdded){ - $s_action =""; - foreach($_POST as $key => $value){ - if(preg_match("/^dep_back.*/i",$key)){ - $s_action="back"; - }elseif(preg_match("/^dep_root.*/",$key)){ - $s_action="root"; - }elseif(preg_match("/^dep_home.*/i",$key)){ - $s_action="home"; - } - } + /* Update current base */ + $s_action =""; + foreach($_POST as $key => $value){ + if(preg_match("/^dep_back.*/i",$key)){ + $s_action="back"; + }elseif(preg_match("/^dep_root.*/",$key)){ + $s_action="root"; + }elseif(preg_match("/^dep_home.*/i",$key)){ + $s_action="home"; + } + } - /* Save base selection from headpage selectbox*/ - if(isset($_POST['CurrentMainBase'])){ - $this->selectedBase = $_POST['CurrentMainBase']; - } + /* Save base selection from headpage selectbox*/ + if(isset($_POST['CurrentMainBase'])){ + $this->selectedBase = $_POST['CurrentMainBase']; + } - /* Homebutton is posted */ - if($s_action=="home"){ - $ui= get_userinfo(); - $base = get_base_from_people($ui->dn); - $this->selectedBase= $base; - } + /* Homebutton is posted */ + if($s_action=="home"){ + $ui= get_userinfo(); + $base = get_base_from_people($ui->dn); + $this->selectedBase= $base; + } - /* Open selected department - this is posted by the parent class MultiSelectWindow */ - if(isset($_GET['act'])&& ($_GET['act'] == "dep_open")){ - $s_entry = base64_decode($_GET['dep_id']); - if (!isset($this->config->departments[$s_entry])){ - print_red(_("Error: The requested subtree has an inconsistent DN encoding, check your LDAP!")); - } else { - $this->selectedBase = $this->config->departments[$s_entry]; - } - } + /* Open selected department + this is posted by the parent class MultiSelectWindow */ + if(isset($_GET['act'])&& ($_GET['act'] == "dep_open")){ + $s_entry = base64_decode($_GET['dep_id']); + if (!isset($this->config->departments[$s_entry])){ + print_red(_("Error: The requested subtree has an inconsistent DN encoding, check your LDAP!")); + } else { + $this->selectedBase = $this->config->departments[$s_entry]; + } + } - /* back to the roots ^^ */ - if($s_action=="root"){ - $this->selectedBase=($this->config->current['BASE']); - $dep_id = $this->ui->get_module_departments($this->module); + /* back to the roots ^^ */ + if($s_action=="root"){ + $this->selectedBase=($this->config->current['BASE']); + $dep_id = $this->ui->get_module_departments($this->module); + if(isset($dep_id[key($dep_id)])){ $this->selectedBase = $dep_id[key($dep_id)]; } + } - /* If Back-button is pressed, move back one step in DN */ - if($s_action=="back"){ + /* If Back-button is pressed, move back one step in DN */ + if($s_action=="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)){ + /* 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)){ - /* 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)); + /* 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['/']; - } + /* 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; - } + } + } + $_SESSION['CurrentMainBase'] = $this->selectedBase; if(isset($_POST['MultiSelectWindow'.$this->filterName])){ @@ -554,7 +589,7 @@ class MultiSelectWindow{ /* Create header snapshot value */ - function get_snapshot_header() + function get_snapshot_header($layer_menu = FALSE) { $str = " "; if($this->parent->snapshotEnabled()){ @@ -563,13 +598,20 @@ class MultiSelectWindow{ $ok |= count($this->parent->getAllDeletedSnapshots($base)) >= 1 ; } if($ok){ - $str = " "; + if($layer_menu){ + $str = "..|"._("Restore")." "._("Restore")."|RestoreDeletedSnapShot|\n"; + }else{ + $str = " "; + } }else{ - $str = " "; + if($layer_menu){ + $str = "..| "._("Restore")."||\n"; + }else{ + $str = " "; + } } - # $str .= " "; } return($str); @@ -600,6 +642,7 @@ class MultiSelectWindow{ function AddDepartments($base = false,$numtabs = 3,$empty_tabs_in_front = 0) { $this->DepartmentsAdded = true; + $this->Added_Departments = array(); /* check for a valid base */ if(!$base){ @@ -635,6 +678,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){ @@ -649,7 +697,7 @@ class MultiSelectWindow{ $non_empty=""; $nkey= normalizePreg($key); foreach($this->config->departments as $keyd=>$vald ){ - if(preg_match("/$nkey\/.*/",$keyd)){ + if(preg_match('/$nkey\/.*/',$keyd)){ $non_empty="full"; } } @@ -661,25 +709,34 @@ class MultiSelectWindow{ for($i = 0; $i < $empty_tabs_in_front ; $i ++){ $row[] = array("string"=>" ", "attach" => "style='text-align:center;width:20px;'"); } - $numtabs -= $empty_tabs_in_front; } $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); + $this->Added_Departments[] = $row; } } + + function set_List_Bottom_Info($str) + { + $this->List_Bottom_Info = $str; + } + + function get_List_Bottom_Info() + { + return($this->List_Bottom_Info); + } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>