Code

Mimetypes
[gosa.git] / gosa-plugins / goto / admin / mimetypes / class_divListMimeTypes.inc
index 4f669c95dc8796183ca115995ca3d000008a00cd..7c80b55ed5c53e33785bfd51bc71912689c00d7f 100644 (file)
@@ -78,66 +78,16 @@ class divListMimeTypes extends MultiSelectWindow
   /* Create list header, with create / copy & paste etc*/
   function GenHeader()
   {
-
-
     /* Add default header */
     $listhead = MultiSelectWindow::get_default_header(false);
     if(!$this->parent->IsReleaseManagementActivated()){
 
-      /* Prepare departments,
-         which are shown in the listbox on top of the listbox
-       */
-      $options= "";
-
       /* Get all departments within this subtree */
       $ui= get_userinfo();
       $first = "";
       $found = FALSE;
       $base = $this->config->current['BASE'];
-
-      /* Add base */
-      $tmp = array();
-      $tmp[] = array("dn"=>$this->config->current['BASE']);
-      $tmp=  array_merge($tmp,get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
-            array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH));
-
-      $deps = array();
-      foreach($tmp as $tm){
-        $deps[$tm['dn']] = $tm['dn'];
-      }
-
-      /* Load possible departments */
-      $ui= get_userinfo();
-      $tdeps= $ui->get_module_departments($this->module);
-      $ids = $this->config->idepartments;
-      $first = "";
-      $found = FALSE;
-      foreach($ids as $dep => $name){
-        if(isset($deps[$dep]) && in_array_ics($dep, $tdeps)){
-
-          /* Keep first base dn in mind, we could need this
-           *  info if no valid base was found
-           */
-          if(empty($first)) {
-            $first = $dep['dn'];
-          }
-
-          $value = $ids[$dep];
-          if ($this->selectedBase == $dep){
-            $found = TRUE;
-            $options.= "<option selected='selected' value='".$dep."'>$value</option>";
-          } else {
-            $options.= "<option value='".$dep."'>$value</option>";
-          }
-        }
-      }
-
-      /* The currently used base is not visible with your acl setup.
-       * Set base to first useable base.
-       */
-      if(!$found){
-        $this->selectedBase = $first;
-      }
+      $options  = $this->create_department_list($this->module);
 
       /* And at least add a department selection box */
       $listhead .=  _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
@@ -197,7 +147,6 @@ class divListMimeTypes extends MultiSelectWindow
      ********************/
 
     /* Create links */
-    $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
     $userimg  = "<img class='center' src='plugins/groups/images/groups.png' alt='User'    title='%s'>";
     $mimeimg  = "<img class='center' src='images/select_mimetype.png' alt='A'  title='"._("Mime type")."'>";
@@ -215,33 +164,39 @@ class divListMimeTypes extends MultiSelectWindow
 
     foreach($list as $key => $val){
 
+      /* Check FAI state 
+       */  
+      $FAIstate = $val['FAIstate'][0];
+
       $ui       = get_userinfo();
       $acl      = $ui->get_permissions($val['dn'],"mimetypes/mimetype");
       $acl_all  = $ui->has_complete_category_acls($val['dn'],"mimetypes") ;
 
       $action = "";
-      if($ui->is_cutable($val['dn'],"mimetypes","mimetype") && $this->parent->CopyPasteHandler){
-        $action .= "<input class='center' type='image'
-          src='images/lists/cut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
-      }else{
-        $action.="<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
-      }
 
-      if($ui->is_copyable($val['dn'],"mimetypes","mimetype") && $this->parent->CopyPasteHandler){
-        $action.= "<input class='center' type='image'
-          src='images/lists/copy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
+      /* Add copy & cut functionality */
+      if(!preg_match("/freeze/i",$FAIstate)){
+        $action.= $this->parent->get_copypaste_action($val['dn'],"mimetypes","mimetype");
       }else{
-        $action.="<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
+        $action.= "<img src='images/empty.png' class='center' alt=''>&nbsp;";
+        $action.= "<img src='images/empty.png' class='center' alt=''>&nbsp;";
       }
 
       $action.= "<input class='center' type='image'
         src='images/lists/edit.png' alt='"._("edit")."' name='mime_edit_%KEY%' title='"._("Edit this entry")."'>";
 
       /* Add snapshot icon */
-      $action.= $this->parent->get_snapshot_action($val['dn'],$this->module);
+      if(!preg_match("/freeze/i",$FAIstate)){
+        $action.= $this->parent->get_snapshot_action($val['dn'],$this->module);
+      }else{
+        $action.= "<img src='images/empty.png' class='center' alt=''>&nbsp;";
+        $action.= "<img src='images/empty.png' class='center' alt=''>&nbsp;";
+      }
 
       /* Add delete button */
-      if(preg_match("/d/",$acl)){
+      if(preg_match("/freeze/i",$FAIstate)){
+        $action .= "<img src='images/freeze.png' class='center' alt='!' title='"._("Freezed")."'>";
+      }elseif(preg_match("/d/",$acl)){
         $action.= "<input class='center' type='image'
           src='images/lists/trash.png' alt='"._("delete")."' name='mime_del_%KEY%' title='"._("Delete this entry")."'>";
       }else{