Code

Removed headpage
[gosa.git] / include / class_MultiSelectWindow.inc
index de36d8192271aa52a03f41a9f468962fe1bbcb4e..cee65eec483a4078d425a69ff474e225ae2b3190 100644 (file)
@@ -9,31 +9,32 @@ 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 $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 $is_closed                          = false;
-       var $is_saved                           = false;
+  var $SaveAdditionalVars = array();  // Additional Post vars to store 
 
-       var $is_headpage                        = false;        // if true the design changes
-
-       var $filterName                         = "Liste";
 
        function ClearElementsList()
        {
                $this->array_Elements = array();
-               #FIXME  print_sizelimit_warning() ? still missing
        }
 
 
@@ -41,9 +42,9 @@ class MultiSelectWindow{
        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'];
@@ -65,6 +66,20 @@ class MultiSelectWindow{
                $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 */
@@ -74,8 +89,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;
@@ -130,11 +145,11 @@ class MultiSelectWindow{
        }
 
        /* Add a checkbox to the filter element,
-       the name specifies an existing class var to store the 'selection' */
+          the name specifies an existing class var to store the 'selection' */
        function AddCheckBox($name,$value="Unset",$string="Unset",$default=false)
        {
                $arr = array();
-       
+
                if($name == SEPERATOR){
                        $arr['name'] = SEPERATOR;
                }else{
@@ -144,16 +159,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;
+                       $arr['name']          = $name;
+                       $arr['string']      = $string;
+                       $arr['value']         = $value;
+                       $arr['enabled']     = true;
+
                }
                $this->array_Checkboxes[] = $arr;
        }
 
+
        /* Hides or unhides the checkbox with the given name */
        function DisableCheckBox($name,$HideShow = false)
        {
@@ -164,7 +182,6 @@ class MultiSelectWindow{
                }
        }
 
-       
 
        /* Returns true if the close button was pressed */
        function isClosed()
@@ -184,10 +201,28 @@ 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);
@@ -250,16 +285,16 @@ class MultiSelectWindow{
                                </table>";
                }
                $smarty->assign("regexes"                       , $regexes );
-               
+
                /* 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());
@@ -280,13 +315,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);
        }
@@ -303,13 +338,85 @@ 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()
        {
+               /* 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";
+                               }
+                       }
+
+                       /* Save base selection from headpage selectbox*/
+                       if(isset($_POST['CurrentMainBase'])){
+                               $this->selectedBase = $_POST['CurrentMainBase'];
+                       }
+
+                       /* Homebutton is posted */
+                       if($s_action=="home"){
+                               $ui= get_userinfo();
+                               $this->selectedBase=(preg_replace("/^[^,]+,/","",$ui->dn));
+                               $this->selectedBase=(preg_replace("/^[^,]+,/","",$this->selectedBase));
+                       }
+
+                       /* 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']);
+                       }
+
+
+                       /* 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']);
+
+                               /* 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;
@@ -333,15 +440,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 */
@@ -359,6 +466,8 @@ class MultiSelectWindow{
        /* this function adds the sub-departments of the current tree to the list */
        function AddDepartments($base = false,$numtabs = 3)
        {
+               $this->DepartmentsAdded = true;
+
                /* check for a valid base */
                if(!$base){
                        if(!isset($_SESSION['CurrentMainBase'])){
@@ -411,19 +520,18 @@ class MultiSelectWindow{
                                }
                        }
 
-                       
                        /* Add to divlist */
                        $row = array();
-                       $row[] = $field1 = array("string" => "<img src='images/".$non_empty."folder.png' alt='department'>", "attach" => "style='text-align:center;width:20px;'");
-                       $row[] = $field2 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "style=''");
+                       $row[]=$field1=array("string"=>"<img src='images/".$non_empty."folder.png' alt='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"=>"&nbsp;","attach" => "style='width:60px;border-right:0px;text-align:right;'");
-                                       }else{
-                                               $row[] = array("string"=>"&nbsp;");
-                                       }
+          if(isset( $this->array_Header[$i]['attach'])){
+            $row[] = array("string"=>"&nbsp;","attach" => $this->array_Header[$i]['attach']);
+          }else{
+            $row[] = array("string"=>"&nbsp;");
+          }
                                }
                        }
 
@@ -431,5 +539,5 @@ class MultiSelectWindow{
                }
        }
 }
-
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>