Code

Readded description
[gosa.git] / gosa-core / include / class_MultiSelectWindow.inc
index adcb53ef3792ed2b0729d8642928ffdc28c60d70..08e47a82fcdb1cd5730357d2172e513abb0b300d 100644 (file)
@@ -211,7 +211,7 @@ class MultiSelectWindow{
 
 
   /* Return default header part. With back, home and root icons and department selection */
-  function get_default_header()
+  function get_default_header($seperator= TRUE)
   {
     $enable_back = TRUE;
     $enable_root = TRUE;
@@ -260,9 +260,10 @@ class MultiSelectWindow{
    
     /* And at least draw reload button, this button is enabled everytime */ 
     $listhead .=  " <input class='center' type='image' src='images/lists/reload.png' align='middle'
-      title='"._("Reload list")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
-      " <img   class='center' src='images/lists/seperator.png' align='middle' alt='-' height='16' width='1'>&nbsp;";
-
+      title='"._("Reload list")."' name='submit_department' alt='"._("Submit")."'>&nbsp;";
+    if ($seperator){
+      $listhead.= " <img   class='center' src='images/lists/seperator.png' align='middle' alt='-' height='16' width='1'>&nbsp;";
+    }
     return ($listhead);
   }
 
@@ -402,9 +403,9 @@ class MultiSelectWindow{
 
                        /* Check if box is checked */
                        if($box['default'] == true){
-                               $boxes .="<input type='checkbox' name=\"".$box['name']."\" value='1' title=\"".htmlentities($box['value'])."\" checked ".$boxClick.">&nbsp;".$box['string']."<br>";
+                               $boxes .="<input type='checkbox' name=\"".$box['name']."\" value='1' title=\"".htmlspecialchars($box['value'])."\" checked ".$boxClick.">&nbsp;".$box['string']."<br>";
                        }else{
-                               $boxes .="<input type='checkbox' name=\"".$box['name']."\" value='1' title=\"".htmlentities($box['value'])."\" ".$boxClick.">&nbsp;".$box['string']."<br>";
+                               $boxes .="<input type='checkbox' name=\"".$box['name']."\" value='1' title=\"".htmlspecialchars($box['value'])."\" ".$boxClick.">&nbsp;".$box['string']."<br>";
                        }
                }
                $smarty->assign("CheckBoxes", $boxes);
@@ -422,7 +423,7 @@ class MultiSelectWindow{
                                </td>
                                <td width=\"99%\">
                                <input id=\"".$regex['name']."\" type=\"text\" style='width:99%' name=\"".$regex['name']."\" maxlength='20'
-                               value=\"".htmlentities($regex['value'])."\" title=\"".htmlentities($regex['string'])."\"> 
+                               value=\"".htmlspecialchars($regex['value'])."\" title=\"".htmlspecialchars($regex['string'])."\"> 
                                </td>
                                </tr>
                                </table>";
@@ -452,12 +453,12 @@ class MultiSelectWindow{
                $smarty->assign("DivList"                       , $divlist->DrawList()."\n\n\n\n\n".$this->footer."\n\n\n\n\n");
 
                if($this->is_headpage){
-                       $smarty->assign("tree_image",           get_template_path('images/tree.png'));
+                       $smarty->assign("tree_image",           get_template_path('images/lists/search-subtree.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("tree_image",           get_template_path('images/lists/search-subtree.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());
@@ -524,11 +525,11 @@ class MultiSelectWindow{
     /* 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])){
+      $s_entry = $_GET['dep_id'];
+      if (!isset($this->departments[$s_entry])){
         msg_dialog::display(_("LDAP error"), sprintf(_("Inconsistent DN encoding detected: '%s'"), LDAP::fix($s_entry)), ERROR_DIALOG);
       } else {
-        $this->selectedBase = $this->config->departments[$s_entry];
+        $this->selectedBase = $this->departments[$s_entry]['dn'];
       }
     }
 
@@ -634,56 +635,6 @@ class MultiSelectWindow{
        }
 
 
-  /* Create header snapshot value */
-  function get_snapshot_header($layer_menu = FALSE)
-  {
-    $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){
-        if($layer_menu){
-          $str = "..|<img class='center' src='images/lists/restore.png' alt='"._("Restore")."'>&nbsp;"._("Restore")."|RestoreDeletedSnapShot|\n";
-        }else{
-          $str = "<input class='center' type='image' align='middle' src='images/lists/restore.png'
-            title='"._("Restore snapshopts of already deleted objects")."' 
-            alt='"._("Restore")."' name='RestoreDeletedSnapShot'>&nbsp;"; 
-        }
-      }else{
-        if($layer_menu){
-          $str = "..|<img class='center' src='images/lists/restore_grey.png' alt=''>&nbsp;"._("Restore")."||\n";
-        }else{
-          $str = "<img class='center' src='images/lists/restore_grey.png' alt=''>&nbsp;";
-        }
-      }
-#      $str .= "<img class='center' src='images/lists/seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
-    }
-    return($str);
-  }
-
-
-  function GetSnapShotActions($dn)
-  {
-    $str= "";
-    if($this->parent->snapshotEnabled()){
-
-      if(count($this->parent->Available_SnapsShots($dn))){
-        $str.= "<input class='center' type='image' src='images/lists/restore.png'
-          alt='"._("Restore snapshot")."' name='RestoreSnapShotDialog_".base64_encode($dn)."' title='"._("Restore snapshot")."'>&nbsp;";
-      } else {
-        $str = "<img class='center' src='images/lists/restore_grey.png' alt=''>&nbsp;";
-      }
-
-      $str.= "<input class='center' type='image' src='images/snapshot.png'
-        alt='"._("Create snapshot")."' name='CreateSnapShotDialog_".base64_encode($dn)."' title='"._("Create a new snapshot from this object")."'>&nbsp;";
-    }
-
-    return($str);
-  }
-
-
        /* this function adds the sub-departments of the current tree to the list */
        function AddDepartments($base = false,$numtabs = 3,$empty_tabs_in_front = 0)
        {
@@ -707,7 +658,7 @@ class MultiSelectWindow{
 
                /* Get all departments within this subtree */
                $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
-                    array("ou", "description"), GL_SIZELIMIT | GL_CONVERT);
+                    array("ou", "description"), GL_SIZELIMIT );
 
                /* Edit delete link for system types
                 */
@@ -716,50 +667,49 @@ class MultiSelectWindow{
                /* 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']);
-                       }
+      $name = $value['ou'][0]." -".$value['dn'];
+                 $this->departments[$name]= $value; 
                }
-               natcasesort($this->departments);
-
-
-    if($empty_tabs_in_front){
-#      $numtabs -= $empty_tabs_in_front;
-    }
+    uksort($this->departments, 'strnatcasecmp');
+    $this->departments = array_values($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";
-                               }
-                       }
+      /* Check if this department contains sub-departments
+         Display different image in this case
+       */
+      $non_empty="";
+      foreach($this->config->departments as $keyd){
+        if(preg_match("/,".normalizePreg($val['dn'])."$/",$keyd)){
+          $non_empty="-full";
+        }
+      }
 
-                       /* Add to divlist */
+                       /* Add spacer cols to divlist 
+       */
                        $row = array();
-
       if($empty_tabs_in_front){
         for($i = 0; $i < $empty_tabs_in_front ; $i ++){
           $row[] = array("string"=>"&nbsp;", "attach" => "style='text-align:center;width:20px;'");
         }
       }
 
-                       $row[]=$field1=array("string"=>"<img src='images/lists/folder".$non_empty.".png' alt='department'>","attach"=>"style='text-align:center;width:20px;'");
-                       $row[]=$field2=array("string"=>sprintf($linkopen,base64_encode($key),$val), "attach" => "style=''");
+      /* Create entry name 
+       */
+      $name = $val['ou'][0];
+      if(isset($val['description'])){
+        $name .=  " - [".$val["description"][0]."]";
+      }
+
+      /* Add departments
+       */
+      $img = "<img src='images/lists/folder".$non_empty.".png' alt='department'>";
+                       $row[]=$field1=array("string"=> $img,"attach"=>"style='text-align:center;width:20px;'");
+                       $row[]=$field2=array("string"=>sprintf($linkopen,$key,$name), "attach" => "style=''");
 
+      /* Add spacer tabs 
+       */
                        if($numtabs > 2){       
                                for($i = 2 ; $i < $numtabs;$i++){
           if(isset( $this->array_Header[$i + $empty_tabs_in_front]['attach'])){