X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fclass_MultiSelectWindow.inc;h=cf90a8d01284605c60424d83be2aa24e1a46d768;hb=d2a7f50083180fccb855c116a0f16cbca2636f62;hp=7bea177b2cb02bf816c0d8a1d9c4f7701d3939a0;hpb=156ed69e4b82e6227a8fe3456be7e5b3f010507d;p=gosa.git diff --git a/include/class_MultiSelectWindow.inc b/include/class_MultiSelectWindow.inc index 7bea177b2..cf90a8d01 100644 --- a/include/class_MultiSelectWindow.inc +++ b/include/class_MultiSelectWindow.inc @@ -9,36 +9,47 @@ class MultiSelectWindow{ var $bool_DisplaySaveButton = true; var $SaveButtonString = ""; - var $CloseButtonString = ""; + var $CloseButtonString = ""; - var $string_Title = ""; - var $string_ListHeader = ""; + var $string_Title = ""; + var $string_ListHeader = ""; var $string_Summary = ""; - var $string_Information = ""; + var $string_Information = ""; - var $array_Header = array(); + var $array_Header = array(); var $array_Elements = array(); var $array_Checkboxes = array(); var $array_Regexes = array(); - var $config = array(""); - - var $is_closed = false; - var $is_saved = false; - - var $is_headpage = false; // if true the design changes + var $config = array(""); + var $is_closed = false; + var $is_saved = false; + var $is_headpage = false; // if true the design changes + var $filterName = "Liste"; + var $DepartmentsAdded = false; + var $selectedBase = ""; - var $filterName = "Liste"; + var $DivHeight = ""; - var $DepartmentsAdded = false; - var $selectedBase = ""; + var $HideFilterPart = false; + var $SaveAdditionalVars = array(); // Additional Post vars to store + var $module= ""; function ClearElementsList() { $this->array_Elements = array(); } + function HideFilterPart($bool = true) + { + $this->HideFilterPart = $bool; + } + + function SetHeight($height) + { + $this->DivHeight=$height; + } /* Adds a regex input field to the current dialog */ function AddRegex($name,$string,$value,$conn,$image="images/search.png") @@ -62,18 +73,23 @@ class MultiSelectWindow{ } /* Contrucktion */ - function MultiSelectWindow($config,$filterName) + function MultiSelectWindow($config, $filterName, $module) { $this->config = $config; + $this->module = $module; $this->SaveButtonString = _("Save"); $this->CloseButtonString = _("Close"); $this->filterName = $filterName; - /* Set default base */ - if(!isset($_SESSION['CurrentMainBase'])){ - $_SESSION['CurrentMainBase'] = $this->config->current['BASE']; - } $this->selectedBase = $_SESSION['CurrentMainBase']; + + /* Check default values for SaveAdditionalVars */ + foreach($this->SaveAdditionalVars as $name){ + if(isset($_SESSION['MultiDialogFilters'][$this->filterName][$name])){ + $this->$name = $_SESSION['MultiDialogFilters'][$this->filterName][$name]; + } + } + } /* Enables the headpage mode, which changes the list look */ @@ -153,18 +169,19 @@ class MultiSelectWindow{ $arr['default'] = $_SESSION['MultiDialogFilters'][$this->filterName][$name]; $this->$name = $arr['default']; }else{ - $arr['default'] = $default; + $arr['default'] = $default; + $this->$name = $default; } $arr['name'] = $name; $arr['string'] = $string; $arr['value'] = $value; $arr['enabled'] = true; - $this->$name = $default; } $this->array_Checkboxes[] = $arr; } + /* Hides or unhides the checkbox with the given name */ function DisableCheckBox($name,$HideShow = false) { @@ -176,7 +193,6 @@ class MultiSelectWindow{ } - /* Returns true if the close button was pressed */ function isClosed() { @@ -221,6 +237,10 @@ class MultiSelectWindow{ $divlist = new divlist($this->string_Title); $divlist->SetSummary($this->string_Summary); $divlist->SetEntriesPerPage(0); // 0 for scrollable list + + if($this->DivHeight != ""){ + $divlist->SetHeight($this->DivHeight); + } /* set Header informations */ @@ -253,9 +273,9 @@ class MultiSelectWindow{ /* Check if box is checked */ if($box['default'] == true){ - $boxes .=" ".$box['string']."
"; + $boxes .=" ".$box['string']."
"; }else{ - $boxes .=" ".$box['string']."
"; + $boxes .=" ".$box['string']."
"; } } $smarty->assign("CheckBoxes", $boxes); @@ -272,14 +292,21 @@ class MultiSelectWindow{ - + "; } $smarty->assign("regexes" , $regexes ); + /* Hide Filter Part if Requested or empty */ + if((empty($boxes)) && (empty($regexes)) || ($this->HideFilterPart)){ + $smarty->assign("Skip_Filter_Part", true); + }else{ + $smarty->assign("Skip_Filter_Part", false); + } + /* Assign alphabet and display it */ $smarty->assign("Display_alphabet", $this->bool_DisplayAlpahabet); @@ -335,6 +362,11 @@ class MultiSelectWindow{ Store data also into a session var, to keep the checkboxes check after reload */ function save_object() { + /* Get up to date config */ + if(isset($this->parent->config)){ + $this->config = $this->parent->config; + } + /* Update current base */ if($this->DepartmentsAdded){ $s_action =""; @@ -355,16 +387,20 @@ class MultiSelectWindow{ /* Homebutton is posted */ if($s_action=="home"){ - $ui= get_userinfo(); - $this->selectedBase=(preg_replace("/^[^,]+,/","",$ui->dn)); - $this->selectedBase=(preg_replace("/^[^,]+,/","",$this->selectedBase)); + $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']); - $this->selectedBase = $this->config->departments[trim($s_entry)]; + 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 ^^ */ @@ -395,6 +431,16 @@ class MultiSelectWindow{ if(isset($_POST['MultiSelectWindow'.$this->filterName])){ + /* Save some additional vars */ + foreach($this->SaveAdditionalVars as $name){ + if(isset($_POST[$name])){ + if(isset($this->$name)){ + $this->$name = $_POST[$name]; + $_SESSION['MultiDialogFilters'][$this->filterName][$name] = $_POST[$name]; + } + } + } + /* Check posts from checkboxes */ foreach($this->array_Checkboxes as $key => $box){ @@ -437,12 +483,56 @@ class MultiSelectWindow{ $val = preg_replace("/\*\**/","*",$val); $this->array_Regexes[$key]['value'] = $val; $this->$box['name'] = $val; + $_SESSION['MultiDialogFilters'][$this->filterName][$box['name']] = $val; } } } - } + + /* Create header snapshot value */ + function get_snapshot_header() + { + $str = " "; + if($this->parent->snapshotEnabled()){ + $ok = false; + foreach($this->parent->get_used_snapshot_bases() as $base){ + $ok |= count($this->parent->getAllDeletedSnapshots($base)) >= 1 ; + } + if($ok){ + $str = " "; + }else{ + $str = " "; + } + +# $str .= " "; + } + return($str); + } + + + function GetSnapShotActions($dn) + { + $str= ""; + if($this->parent->snapshotEnabled()){ + + if(count($this->parent->Available_SnapsShots($dn))){ + $str.= " "; + } else { + $str = " "; + } + + $str.= " "; + } + + return($str); + } + + /* this function adds the sub-departments of the current tree to the list */ function AddDepartments($base = false,$numtabs = 3) { @@ -464,8 +554,8 @@ class MultiSelectWindow{ $this->departments = array(); /* Get all departments within this subtree */ - $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->ui->subtreeACL, - $base, array("ou", "description"), GL_SIZELIMIT | GL_CONVERT); + $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base, + array("ou", "description"), GL_SIZELIMIT | GL_CONVERT); /* Edit delete link for system types */ @@ -484,6 +574,7 @@ class MultiSelectWindow{ /* Add deps to this dialog object list */ foreach($this->departments as $key=> $val){ + /* Add missing entries ... */ if(!isset($this->config->departments[trim($key)])){ $this->config->departments[trim($key)]=""; @@ -500,19 +591,18 @@ class MultiSelectWindow{ } } - /* Add to divlist */ $row = array(); - $row[] = $field1 = array("string" => "department", "attach" => "style='text-align:center;width:20px;'"); - $row[] = $field2 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "style=''"); + $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($i ==($numtabs-1)){ - $row[] = array("string"=>" ","attach" => "style='width:60px;border-right:0px;text-align:right;'"); - }else{ - $row[] = array("string"=>" "); - } + if(isset( $this->array_Header[$i]['attach'])){ + $row[] = array("string"=>" ","attach" => $this->array_Header[$i]['attach']); + }else{ + $row[] = array("string"=>" "); + } } }