Code

Updated language detection code
[gosa.git] / include / class_MultiSelectWindow.inc
index 8c382d00ddd82c1b6949eca73c85275ff51b21ef..4ccc27c488ffada6b4f89543e083a36397a21c77 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 
+define ("SEPERATOR", 1002);
+
 class MultiSelectWindow{
 
        var $bool_DisplayAlpahabet      = false;
@@ -7,111 +9,301 @@ 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                                     = "";
+       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 $Added_Departments  = array();
+       var $selectedBase       = "";
+
+  var $DivHeight          = "";
 
-       var $is_closed                          = false;
-       var $is_saved                           = false;
+  var $HideFilterPart     = false;
+  var $List_Bottom_Info   = "";
+  var $SaveAdditionalVars = array();  // Additional Post vars to store 
 
        function ClearElementsList()
        {
                $this->array_Elements = array();
        }
 
-       function AddRegex($name,$string,$value,$conn)
+  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 */   
+               if(isset($_SESSION['MultiDialogFilters'][$this->filterName][$name])){
+                       $arr['value']   = $_SESSION['MultiDialogFilters'][$this->filterName][$name];
+                       $this->$name = $arr['value'];
+               }else{
+                       $arr['value']   = $value;       
+               }
+
                $arr['name']            = $name;
                $arr['string']          = $string;
-               $arr['value']           = $value;       
+               $arr['image']           = $image;       
                $arr['connAlpha']       = $conn;                // Connect with alphabet select 
                $this->array_Regexes[] = $arr;
        }
 
-       function MultiSelectWindow($config){
+       /* Contrucktion */
+       function MultiSelectWindow($config,$filterName)
+       {
                $this->config = $config;
                $this->SaveButtonString         = _("Save");
                $this->CloseButtonString        = _("Close");
+               $this->filterName                       = $filterName;
+
+               /* Set default base, to users 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 */
+       function SetHeadpageMode()
+       {
+               $this->is_headpage = true;
        }
 
-       function SetTitle($str){
+       /* Sets the List internal name (not displayed anywhere) 
+          it is used to identify every single list
+        */     
+       function SetTitle($str)
+       {
                $this->string_Title = $str;
        }
 
-       function SetListHeader($str){
+       /* Set the list header string  */
+       function SetListHeader($str)
+       {
                $this->string_ListHeader = $str;
        }
 
-       function SetSummary($str){
+       /* This sets the list description which is the first gray bar on top of the list */
+       function SetSummary($str)
+       {
                $this->string_Summary = $str;
        }
 
-       function SetSaveButtonString($str){
+       /* If the save button is enabled, you can change its caption with this function */      
+       function SetSaveButtonString($str)
+       {
                $this->SaveButtonString = $str;
        }
 
-       function SetCloseButtonString($str){
+       /* If the close button is enabled, you can change its caption with this function */     
+       function SetCloseButtonString($str)
+       {
                $this->CloseButtonString = $str;
        }
 
-       function SetInformation($str){
+       /* With this function you can change the text of the information box */
+       function SetInformation($str)
+       {
                $this->string_Information = $str;
        }
 
-       function EnableAplhabet($bool){
+       /* Display the alphabet selection box*/
+       function EnableAplhabet($bool)
+       {
                $this->bool_DisplayAlpahabet = $bool;
        }
 
-       function AddHeader($arr){
+       /* Add additional header col */
+       function AddHeader($arr)
+       {
                $this->array_Header[] = $arr;
        }
 
-       function AddElement($arr){
+       /* add additional List element */
+       function AddElement($arr)
+       {
                $this->array_Elements[] = $arr;
        }
 
-       function AddCheckBox($name,$value,$string,$default){
+
+  function get_default_header($navigation= TRUE)
+  {
+    $enable_back = $navigation;
+    $enable_root = $navigation;
+    $enable_home = $navigation;
+
+    $ui = get_userinfo();
+
+    /* Check if selectedBase = first available base */
+    $deps = array();
+    foreach($this->config->departments as $dep){
+      $deps[] = $dep;
+    }
+
+
+    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 = "<div style='background:#F0F0F9;padding:5px;'>";
+
+    /* Draw root button */
+    if($enable_root){
+      $listhead .= " <input class='center' type='image' src='images/list_root.png' align='middle'
+        title='"._("Go to root department")."' name='dep_root' alt='"._("Root")."'>&nbsp;";
+    }else{
+      $listhead .= " <img src='images/list_root_gray.png' class='center' alt='"._("Root")."'>&nbsp;";
+    }
+
+    /* Draw back button */
+    if($enable_back){
+      $listhead .= " <input class='center' type='image' align='middle' src='images/list_back.png'
+        title='"._("Go up one department")."' alt='"._("Up")."'                name='dep_back'>&nbsp;";
+    }else{
+      $listhead .= " <img src='images/list_back_gray.png' class='center' alt='"._("Up")."'>&nbsp;";
+    }
+
+    /* Draw home button */
+    if($enable_home){
+      $listhead .= " <input class='center' type='image' align='middle' src='images/list_home.png'
+        title='"._("Go to users department")."' alt='"._("Home")."'            name='dep_home'>&nbsp;";
+    }else{
+      $listhead .= " <img src='images/list_home_gray.png' class='center' alt='"._("Home")."'>&nbsp;";
+    }
+
+    /* And at least draw reload button, this button is enabled everytime */
+    $listhead .=  " <input class='center' type='image' src='images/list_reload.png' align='middle'
+      title='"._("Reload list")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
+      " <img   class='center' src='images/list_seperator.png' align='middle' alt='-' height='16' width='1'>&nbsp;";
+
+    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)
+       {
                $arr = array();
-               $arr['name']    = $name;
-               $arr['string']  = $string;
-               $arr['value']   = $value;
-               $arr['default'] = $default;
+
+               if($name == SEPERATOR){
+                       $arr['name'] = SEPERATOR;
+               }else{
+                       /* 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;
+
+               }
                $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()
        {
                return($this->is_closed);
        }
 
+       /* Enable the close button */
        function EnableCloseButton($bool)
        {
                $this->bool_DisplayCloseButton = $bool;
        }
 
+       /* Enable the save button on the bottom of the list*/
        function EnableSaveButton ($bool)
        {
                $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 
+               $divlist->SetEntriesPerPage(0); // 0 for scrollable list
+    $divlist->SetFooter($this->get_List_Bottom_Info());
+  
+    if($this->DivHeight != ""){
+      $divlist->SetHeight($this->DivHeight);
+    }
 
                /* set Header informations 
                 */
@@ -133,10 +325,20 @@ class MultiSelectWindow{
                $boxes = "";
                $boxClick = " onClick='document.mainform.submit();' ";
                foreach($this->array_Checkboxes as $box){
+
+                       if($box['name'] == SEPERATOR){
+                               $boxes .= "</td></tr></table><table style='width:100%;border-top:1px solid #B0B0B0;'><tr><td>";
+                               continue;
+                       }
+
+                       /* Skip disabled boxes */
+                       if(!$box['enabled']) continue;
+
+                       /* Check if box is checked */
                        if($box['default'] == true){
-                               $boxes .="<input type='checkbox' name='".$box['name']."' value='".$box['value']."' checked ".$boxClick.">&nbsp;".$box['string']."<br>";
+                               $boxes .="<input type='checkbox' name='".$box['name']."' value='1' title='".$box['value']."' checked ".$boxClick.">&nbsp;".$box['string']."<br>";
                        }else{
-                               $boxes .="<input type='checkbox' name='".$box['name']."' value='".$box['value']."'".$boxClick.";>&nbsp;".$box['string']."<br>";
+                               $boxes .="<input type='checkbox' name='".$box['name']."' value='1' title='".$box['value']."'".$boxClick.">&nbsp;".$box['string']."<br>";
                        }
                }
                $smarty->assign("CheckBoxes", $boxes);
@@ -149,48 +351,66 @@ class MultiSelectWindow{
                                <tr>
                                <td>
                                <label for=\"".$regex['name']."\">
-                               <img alt=\"".$regex['string']."\" src=\"images/search.png\" align=middle>
+                               <img alt=\"".$regex['string']."\" src=\"".$regex['image']."\" align=middle>
                                </label>
                                </td>
                                <td width=\"99%\">
-                               <input type='text' style='width:99%' name='".$regex['name']."' maxlength='20'
+                               <input id='".$regex['name']."' type='text' style='width:99%' name='".$regex['name']."' maxlength='20'
                                value='".$regex['value']."' title=\"".$regex['string']."\"> 
                                </td>
                                </tr>
                                </table>";
                }
                $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());
 
-               $smarty->assign("search_image",         get_template_path('images/search.png'));
-               $smarty->assign("searchu_image",        get_template_path('images/search_user.png'));
-               $smarty->assign("tree_image",           get_template_path('images/tree.png'));
-               $smarty->assign("infoimage",            get_template_path('images/info_small.png'));
-               $smarty->assign("launchimage",          get_template_path('images/rocket.png'));
-               $smarty->assign("apply",                        apply_filter());
+
+               if($this->is_headpage){
+                       $smarty->assign("tree_image",           get_template_path('images/tree.png'));
+                       $smarty->assign("infoimage",            get_template_path('images/info.png'));
+                       $smarty->assign("launchimage",          get_template_path('images/launch.png'));
+                       $smarty->assign("apply",                        apply_filter());
+               }else{
+                       $smarty->assign("tree_image",           get_template_path('images/tree.png'));
+                       $smarty->assign("infoimage",            get_template_path('images/info_small.png'));
+                       $smarty->assign("launchimage",          get_template_path('images/rocket.png'));
+                       $smarty->assign("apply",                        apply_filter());
+               }
 
                /* 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);
        }
 
+       /* Set the close var, which simulates the close button is pressed */
        function Close()
        {
                $this->is_closed = true;
@@ -201,12 +421,84 @@ class MultiSelectWindow{
                $this->is_saved = true;
        }
 
+       /* Store all checkboxes/ regexes ... 
+          Store data also into a session var, to keep the checkboxes check after reload  */
        function save_object()
        {
-               if(isset($_POST['MultiSelectWindow'])){
+    /* Save base selection from headpage selectbox*/
+    if(isset($_POST['CurrentMainBase'])){
+      $this->selectedBase = $_POST['CurrentMainBase'];
+    }
+
+    /* 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";
+      }
+    }
+
+    /* 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']);
+    }
+
+
+    /* 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;
@@ -215,27 +507,30 @@ class MultiSelectWindow{
                                        $this->array_Checkboxes[$key]['default'] = false;
                                        $this->$box['name'] = false;
                                }
+                               /* Save settings in out session */
+                               $_SESSION['MultiDialogFilters'][$this->filterName][$box['name']] = $this->$box['name'];
                        }
 
                        /* Check regex posts */
                        foreach($this->array_Regexes as $key => $box){
                                $this->array_Regexes[$key]['value'] = $_POST[$box['name']];
                                $this->$box['name'] = $_POST[$box['name']];
+                               $_SESSION['MultiDialogFilters'][$this->filterName][$box['name']] = $this->$box['name'];
                        }
 
                        /* call close/save if buttons are pressed */
                        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 */
@@ -244,11 +539,100 @@ class MultiSelectWindow{
                                        $val = preg_replace("/\*\**/","*",$val);
                                        $this->array_Regexes[$key]['value'] = $val;
                                        $this->$box['name'] = $val;
+          $_SESSION['MultiDialogFilters'][$this->filterName][$box['name']] =  $val;
                                }
                        }
                }
 
        }
-}
 
+       /* this function adds the sub-departments of the current tree to the list */
+       function AddDepartments($base = false,$numtabs = 3)
+       {
+               $this->DepartmentsAdded = true;
+    $this->Added_Departments = array();
+
+               /* check for a valid base */
+               if(!$base){
+                       if(!isset($_SESSION['CurrentMainBase'])){
+                               $_SESSION['CurrentMainBase'] = $this->config->current['BASE'];
+                       }
+                       $base = $_SESSION['CurrentMainBase'];
+               }
+
+               /* Create ldap obj and switch into base*/
+               $ldap = $this->config->get_ldap_link();
+               $ldap->cd($base);
+
+               /* reset current deps */
+               $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);
+
+               /* Edit delete link for system types
+                */
+               $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
+
+               /* Create an array with all visible (in the list) departments */
+               $departments = array();
+               foreach($deps as $value){
+                       if(isset($value['description'][0])){
+                               $this->departments[$value['dn']]= get_sub_department($value['dn'])." - [".$value["description"][0]."]";
+                       }else{
+                               $this->departments[$value['dn']]= get_sub_department($value['dn']);
+                       }
+               }
+               natcasesort($this->departments);
+
+               /* 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)]="";
+                       }
+
+                       /* check if this department contains sub-departments
+                          Display different image in this case
+                        */
+                       $non_empty="";
+                       $nkey= normalizePreg($key);
+                       foreach($this->config->departments as $keyd=>$vald ){
+                               if(preg_match("/$nkey\/.*/",$keyd)){
+                                       $non_empty="full";
+                               }
+                       }
+
+                       /* 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=''");
+
+                       if($numtabs > 2){       
+                               for($i = 2 ; $i <$numtabs;$i++){
+          if(isset( $this->array_Header[$i]['attach'])){
+            $row[] = array("string"=>"&nbsp;","attach" => $this->array_Header[$i]['attach']);
+          }else{
+            $row[] = array("string"=>"&nbsp;");
+          }
+                               }
+                       }
+
+                       $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:
 ?>