X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fclass_MultiSelectWindow.inc;h=db82577f37a044121960f7ac5a4c1597639ea74c;hb=df8eb3b3c0ce5e3bd4761b2ecb6c490112860d51;hp=6ac6bbaf795eaa485d77df74bdfc130e6717cb5d;hpb=5a11b09e7633a95e5f2a084c3bef917bbb7cd15c;p=gosa.git diff --git a/include/class_MultiSelectWindow.inc b/include/class_MultiSelectWindow.inc index 6ac6bbaf7..db82577f3 100644 --- a/include/class_MultiSelectWindow.inc +++ b/include/class_MultiSelectWindow.inc @@ -1,5 +1,7 @@ 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") { $arr = array(); - + /* Check if the given input field name was already used - for this type of dialog */ + for this type of dialog */ if(isset($_SESSION['MultiDialogFilters'][$this->filterName][$name])){ $arr['value'] = $_SESSION['MultiDialogFilters'][$this->filterName][$name]; $this->$name = $arr['value']; @@ -55,12 +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; + + $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 */ @@ -70,8 +99,8 @@ class MultiSelectWindow{ } /* Sets the List internal name (not displayed anywhere) - it is used to identify every single list - */ + it is used to identify every single list + */ function SetTitle($str) { $this->string_Title = $str; @@ -125,27 +154,103 @@ 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,$string,$default) + the name specifies an existing class var to store the 'selection' */ + function AddCheckBox($name,$value="Unset",$string="Unset",$default=false) { $arr = array(); - - /* Check if there was already a variable - for this dialog which we should use instead of the default*/ - if(isset($_SESSION['MultiDialogFilters'][$this->filterName][$name])){ - $arr['default'] = $_SESSION['MultiDialogFilters'][$this->filterName][$name]; - $this->$name = $arr['default']; + + if($name == SEPERATOR){ + $arr['name'] = SEPERATOR; }else{ - $arr['default'] = $default; - } + /* Check if there was already a variable + for this dialog which we should use instead of the default*/ + if(isset($_SESSION['MultiDialogFilters'][$this->filterName][$name])){ + $arr['default'] = $_SESSION['MultiDialogFilters'][$this->filterName][$name]; + $this->$name = $arr['default']; + }else{ + $arr['default'] = $default; + $this->$name = $default; + } + $arr['name'] = $name; + $arr['string'] = $string; + $arr['value'] = $value; + $arr['enabled'] = true; - $arr['name'] = $name; - $arr['string'] = $string; - $arr['value'] = $value; + } $this->array_Checkboxes[] = $arr; } + + /* Hides or unhides the checkbox with the given name */ + function DisableCheckBox($name,$HideShow = false) + { + foreach($this->array_Checkboxes as $key => $chkbox){ + if($chkbox['name'] == $name){ + $this->array_Checkboxes[$key]['enabled'] = $HideShow; + } + } + } + + /* Returns true if the close button was pressed */ function isClosed() { @@ -164,14 +269,36 @@ class MultiSelectWindow{ $this->bool_DisplaySaveButton = $bool; } + /* Add a list specific filter object to position + 1 on top of Information + 2 Between Information && Filter + 3 Below the Filter Part */ + function AddUserBoxToFilter($position) + { + return(""); + } + /* Draw the list with all list elements and filters */ function Draw() { + + /* Check for exeeded sizelimit */ + if (($message= check_sizelimit()) != ""){ + return($message); + } + $smarty = get_smarty(); + $smarty->assign("UserBox1",$this->AddUserBoxToFilter(1)); + $smarty->assign("UserBox2",$this->AddUserBoxToFilter(2)); + $smarty->assign("UserBox3",$this->AddUserBoxToFilter(3)); $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 */ @@ -193,10 +320,20 @@ class MultiSelectWindow{ $boxes = ""; $boxClick = " onClick='document.mainform.submit();' "; foreach($this->array_Checkboxes as $box){ + + if($box['name'] == SEPERATOR){ + $boxes .= "
"; + continue; + } + + /* Skip disabled boxes */ + if(!$box['enabled']) continue; + + /* 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); @@ -213,24 +350,32 @@ 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); $smarty->assign("alphabet", generate_alphabet()); - $smarty->assign("Header" , $this->string_ListHeader ); $smarty->assign("Summary" , $this->string_Summary); $smarty->assign("Title" , $this->string_Title); $smarty->assign("Information" , $this->string_Information); + /* Check for exeeded sizelimit */ + $smarty->assign("hint" , print_sizelimit_warning()); $smarty->assign("DivList" , $divlist->DrawList()); @@ -249,13 +394,13 @@ class MultiSelectWindow{ /* Button handling */ $smarty->assign("SaveButtonString" ,$this->SaveButtonString); $smarty->assign("CloseButtonString",$this->CloseButtonString); - + $smarty->assign("Display_Close", $this->bool_DisplayCloseButton); $smarty->assign("Display_Save" , $this->bool_DisplaySaveButton); $smarty->assign("filterName" , $this->filterName); $smarty->assign("is_headpage" , $this->is_headpage); - + $display = $smarty->fetch(get_template_path("MultiSelectWindow.tpl")); return($display); } @@ -272,13 +417,93 @@ class MultiSelectWindow{ } /* Store all checkboxes/ regexes ... - Store data also into a session var, to keep the checkboxes check after reload */ + 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 */ + $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']; + } + + /* 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]; + } + } + + /* 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"){ + + /* 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)); + + /* 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; + 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){ if(isset($_POST[$box['name']])){ $this->array_Checkboxes[$key]['default'] = true; @@ -302,15 +527,15 @@ class MultiSelectWindow{ if(isset($_POST['CloseMultiSelectWindow'])){ $this->Close(); } - + if(isset($_POST['SaveMultiSelectWindow'])){ $this->Save(); } } /* check for alphabet selection - Check which regexes are connected to the alphabet - */ + Check which regexes are connected to the alphabet + */ if(isset($_GET['search'])){ foreach($this->array_Regexes as $key => $box){ /* check if this regex is connected to the alphabet selection */ @@ -319,15 +544,61 @@ 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) + function AddDepartments($base = false,$numtabs = 3,$empty_tabs_in_front = 0) { + $this->DepartmentsAdded = true; + /* check for a valid base */ if(!$base){ if(!isset($_SESSION['CurrentMainBase'])){ @@ -344,8 +615,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 */ @@ -362,8 +633,14 @@ 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){ + /* Add missing entries ... */ if(!isset($this->config->departments[trim($key)])){ $this->config->departments[trim($key)]=""; @@ -380,22 +657,30 @@ 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[] = $field3 = array("string" => " ", "attach" => "style='width:60px;border-right:0px;text-align:right;'"); - if($numtabs > 3){ - for($i = 3 ; $i <= $numtabs;$i++){ - $row[] = array("string"=>" "); + 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 + $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); } } } - +// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>