Code

Updated divlists.
[gosa.git] / plugins / admin / fai / class_divListFai.inc
index b308def3cf1f9ca5b62d6abfb7dc37817b687bf7..95e193f1dcb5805a76cefcb5ec537f56530e2c43 100644 (file)
@@ -28,7 +28,7 @@ class divListFai extends MultiSelectWindow
 
   function divListFai ($config,$parent)
   {
-    MultiSelectWindow::MultiSelectWindow($config,"Fai");
+    MultiSelectWindow::MultiSelectWindow($config, "Fai", "fai");
     
     $this->parent       = $parent;
     $this->ui           = get_userinfo();
@@ -41,7 +41,7 @@ class divListFai extends MultiSelectWindow
 
     /* Set list strings */
     $this->SetTitle(_("List of FAI classes"));
-    $this->SetSummary(_("This table displays all systems, in the selected tree."));
+    $this->SetSummary(_("This table displays all FAI classes in the selected tree."));
 
     /* Result page will look like a headpage */
     $this->SetHeadpageMode();
@@ -59,7 +59,12 @@ class divListFai extends MultiSelectWindow
       $action_col_size += 20;
     }
 
+    /* Toggle all selected / deselected */
+    $chk = "<input type='checkbox' id='select_all' name='select_all'
+               onClick='toggle_all_(\"^item_selected_[0-9]*$\",\"select_all\");' >";
+
     /* set Page header */
+    $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
     $this->AddHeader(array("string" => "&nbsp;",                "attach" => "style='text-align:center;width:20px;'"));
     $this->AddHeader(array("string" => _("Name of FAI class"),  "attach" => "style=''"));
     $this->AddHeader(array("string" => _("Class type"),         "attach" => "style='width:200px;'"));
@@ -99,69 +104,103 @@ class divListFai extends MultiSelectWindow
        which are shown in the listbox on top of the listbox
      */
     $options= "";
-    foreach ($this->config->idepartments as $key => $value){
-      if ($this->selectedBase == $key){
-        $options.= "<option selected='selected' value='$key'>$value</option>";
-      } else {
-        $options.= "<option value='$key'>$value</option>";
+
+    /* Get all departments within this subtree */
+    $ui= get_userinfo();
+    $first = "";
+    $found = FALSE;
+    $base = $this->config->current['BASE'];
+    $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
+                    array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
+
+    /* Load possible departments */
+    $ui= get_userinfo();
+    $tdeps= $ui->get_module_departments("fai");
+    $ids = $this->config->idepartments;
+    foreach($deps as $dep){
+      if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $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['dn']];
+        if ($this->selectedBase == $dep['dn']){
+          $options.= "<option selected='selected' value='".$dep['dn']."'>$value</option>";
+        } else {
+          $options.= "<option value='".$dep['dn']."'>$value</option>";
+        }
       }
     }
 
-        /* Create listhead, it will be shown on top of the divlist.
-     * It provides general navigation and object creation
+    /* The currently used base is not visible with your acl setup.
+     * Set base to first useable base.
      */
-    $listhead =
-      "<div style='background:#F0F0F9;padding:5px;'>&nbsp;".
-
-      "<input class='center' type='image' src='images/list_root.png' align='middle'
-      title='"._("Go to root department")."' name='dep_root' alt='".      _("Root")."'>&nbsp;".
-
-      "<input class='center' type='image' src='images/list_up.png' align='middle'
-      title='"._("Go up one department")."' name='dep_back' alt='"._("Up"). "'>&nbsp;".
-
-      "<input class='center' type='image' src='images/list_home.png' align='middle'
-      title='"._("Go to users home department")."' name='dep_home' alt='"._("Home")."'>&nbsp;".
-
-      " <input class='center' type='image' src='images/list_reload.png' align='middle' title='"._("Reload list")."' name='submit_department' alt='".
-_("Submit")."'>&nbsp;".
+    if(!$found){
+      $this->selectedBase = $first;
+    }
 
-      "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
+    /* Add seperator */
+    $add_sep = false;
 
-      " <input class='center' type='image' src='images/fai_new_profile.png' align='middle'
-      title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;".
+    /* Get complete fai acls, to be able to check if we must show or hide the snapshot abilities */ 
+    $acl_all = $ui->has_complete_category_acls($this->selectedBase,$this->module);
 
-      "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;";
+    /* Add default header */
+    $listhead = MultiSelectWindow::get_default_header();
 
-    if($this->parent->snapshotEnabled()){
-      $listhead .= "  <input class='center' type='image' align='middle' src='images/restore.png'
-        title='"._("Restore snapshopts of already deleted objects")."' alt='"._("Restore")."' name='RestoreDeletedSnapShot'>".
-        " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
+    $acl = $ui->get_permissions($this->selectedBase,"fai/faiProfile");
+    if(preg_match("/c/",$acl)){
+      $listhead .=" <input class='center' type='image' src='images/fai_new_profile.png' align='middle'
+        title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;";
+      $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
     }
 
-      $listhead .= " <input class='center' type='image' src='images/fai_new_partitionTable.png' align='middle'
-      title='"._("New partition table")."' name='Create_partition' alt='"._("PT")."'>&nbsp;".
-
-      " <input class='center' type='image' src='images/fai_new_script.png' align='middle'
-      title='"._("New scripts")."' name='Create_script' alt='"._("S")."'>&nbsp;".
-
-      " <input class='center' type='image' src='images/fai_new_hook.png' align='middle'
-      title='"._("New hooks")."' name='Create_hook' alt='"._("H")."'>&nbsp;".
+    /* Add snapshot icons, if we are allowed to write and create the complete fai module ($ui->has_complete_category_acls) */ 
+    if(preg_match("/(c.*w|w.*c)/",$acl_all)){ 
+      $listhead .= $this->get_snapshot_header($this->selectedBase);
+    }
 
-      " <input class='center' type='image' src='images/fai_new_variable.png' align='middle'
-      title='"._("New variables")."' name='Create_variable' alt='"._("V")."'>&nbsp;".
+    /* Add copy & paste icons, currently disabled, this ability is not implemeneted yet */
+    if(preg_match("/(c.*w|w.*c)/",$acl_all) &&  isset($this->parent->CopyPasteHandler) && $this->parent->CopyPasteHandler){
+      $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
+    }
 
-      " <input class='center' type='image' src='images/fai_new_template.png' align='middle'
-      title='"._("New templates")."' name='Create_template' alt='"._("T")."'>&nbsp;".
+    /* Append create icons for each fai component */
+    $arr = array(
+        array("images/fai_new_partitionTable.png" , _("New partition table")  ,"Create_partition" , _("PT") , "faiPartitionTable"),
+        array("images/fai_new_script.png"         , _("New scripts")          ,"Create_script"    , _("S")  , "faiScript"),
+        array("images/fai_new_hook.png"           , _("New hooks")            ,"Create_hook"      , _("H")  , "faiHook"),
+        array("images/fai_new_variable.png"       , _("New variables")        ,"Create_variable"  , _("V")  , "faiVariable"),
+        array("images/fai_new_template.png"       , _("New templates ")       ,"Create_template"  , _("I")  , "faiTemplate"),
+        array("images/fai_new_packages.png"       , _("New package list")     ,"Create_package"   , _("PK") , "faiPackage"));
+
+    foreach($arr as $ar){
+      $acl = $ui->get_permissions($this->selectedBase,"fai/".$ar[4]);
+      if(preg_match("/c/",$acl)){
+        $add_sep = true;
+        $listhead .=" <input class='center' type='image' src='".$ar[0]."' align='middle' title='".$ar[1]."' name='".$ar[2]."' alt='".$ar[3]."'>&nbsp;";
+      }
+    }
 
-      " <input class='center' type='image' src='images/fai_new_packages.png' align='middle'
-      title='"._("New package list")."' name='Create_package' alt='"._("PK")."'>&nbsp;".
+    /* Add additional seperator */
+    if($add_sep){
+      $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
+    }
+  
+    $listhead .=  _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
+                  " <input class='center' type='image' src='images/list_submit.png' align='middle' 
+                  title='"._("Submit department")."' name='submit_department' alt='".  _("Submit")."'>&nbsp;";
 
-      " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
+    /* Multiple options */
+    $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/edittrash.png'
+        title='"._("Remove selected fai objects")."' alt='"._("Remove fai objects")."' name='remove_multiple_fai_objects'>&nbsp;";
 
-      _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
-      " <input class='center' type='image' src='images/list_submit.png' align='middle' title='"._("Submit department")."' name='submit_department' alt='".  _("Submit")."'>&nbsp;".
+    $listhead .="</div>";;
 
-      "</div>";
 
     $this->SetListHeader($listhead);
   }
@@ -223,26 +262,36 @@ _("Submit")."'>&nbsp;".
          $desc= "";
        }
 
-       $action = $this->GetSnapShotActions($value['dn']);;
+
        if($value['FAIstate'] == "freeze"){
-         $action  .= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
+         $action=  "<img src='images/closedlock.png' alt='F' class='center'><img src='images/empty.png' width='38' height='2' class='center' alt=''>";
+         $action.= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
-         $edi = $editlink;
-         $acti = $action;
        }else{
-         $action  .= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
+         $action= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
-         $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
-           name='entry_delete_%KEY%' title='"._("Delete class")."'>";
-         $acti = $action;
-         $edi = $editlink;
+
+         if(preg_match("/(c&w)/",$value['acl'])){
+           $action.= $this->GetSnapShotActions($value['dn']);;
+         }
+
+         if(preg_match("/d/",$value['acl'])){
+           $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
+             name='entry_delete_%KEY%' title='"._("Delete class")."'>";
+         }
        }
 
+       $edi = $editlink;
+       $acti = $action;
+
+       /* Create each field */
+       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
+           "attach" => "style='width:20px;'");
        $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
        $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/","/%TITLE%/"),array($key,$value['cn'].$desc,preg_replace('/ /', '&nbsp;', @LDAP::fix($value['dn']))),$edi) , "attach" => "style=''");
        $field3 = array("string" => $info, "attach" => "style='width:200px;'");
        $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
-       $this->AddElement(array($field1,$field2,$field3,$field4));
+       $this->AddElement(array($field0,$field1,$field2,$field3,$field4));
      }
   }