Code

- Removed obsoleted dir /usr/lib/gosa
[gosa.git] / include / class_MultiSelectWindow.inc
index 581986e518eaf6ea67ab1ea4535513649f70214b..c344e537e7961cbeda8c7fc44c8fcf49ce63d75f 100644 (file)
@@ -27,12 +27,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 
 
        function ClearElementsList()
@@ -153,6 +154,68 @@ class MultiSelectWindow{
                $this->array_Elements[] = $arr;
        }
 
+
+  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)
@@ -235,7 +298,12 @@ class MultiSelectWindow{
 
                $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
+
+    /* 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);
@@ -291,7 +359,7 @@ class MultiSelectWindow{
                                </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>
@@ -361,67 +429,65 @@ class MultiSelectWindow{
           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'];
+    }
 
-                       /* 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;
-                       }
+    /* 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']);
-                       }
+    /* 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']);
+    /* 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));
+      /* 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;
-               }
+      /* 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])){
 
@@ -488,6 +554,7 @@ class MultiSelectWindow{
        function AddDepartments($base = false,$numtabs = 3)
        {
                $this->DepartmentsAdded = true;
+    $this->Added_Departments = array();
 
                /* check for a valid base */
                if(!$base){
@@ -557,8 +624,19 @@ class MultiSelectWindow{
                        }
 
                        $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:
 ?>