Code

Removed unnecessary del_lock
[gosa.git] / gosa-plugins / goto / admin / applications / class_divListApplication.inc
index b124e06c5edbafbad4ee9df83bde3590dcb4488c..c281fa2c5752d3f2dd6d506b6aca9e4308d5d7dc 100644 (file)
@@ -67,7 +67,7 @@ class divListApplication extends MultiSelectWindow
       $releases = $this->parent->getReleases();
       $smarty->assign("app_release" , $releases[$this->parent->app_release]);
       $smarty->assign("app_base"    , $releases[$this->parent->app_base]);
-      $smarty->assign("branchimage","images/branch.png");
+      $smarty->assign("branchimage","plugins/goto/images/branch.png");
       $smarty->assign("app_releases", $releases);
       $str = $smarty->fetch(get_template_path('release_select.tpl', TRUE));
     }
@@ -77,11 +77,6 @@ class divListApplication extends MultiSelectWindow
 
   function GenHeader()
   {
-    /* Prepare departments,
-       which are shown in the listbox on top of the listbox
-    */
-    $options= "";
-
     /* Add default header */
     $listhead = MultiSelectWindow::get_default_header(false);
 
@@ -89,51 +84,7 @@ class divListApplication extends MultiSelectWindow
       
       /* Get all departments within this subtree */
       $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("application");
-      $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 the rest, a base selection box */
       $listhead .= _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
@@ -142,17 +93,23 @@ class divListApplication extends MultiSelectWindow
     }
 
     /* Get acls */
-    $ui       = get_userinfo();
-    $acl      = $ui->get_permissions($this->selectedBase,"application/application");
-    $acl_all  = $ui->has_complete_category_acls($this->parent->app_base,"application");
+    $ui = get_userinfo();
+
+    if($this->parent->IsReleaseManagementActivated()){
+      $acl      = $ui->get_permissions($this->parent->acl_base,"application/application");
+      $acl_all  = $ui->has_complete_category_acls($this->parent->acl_base,"application");
+    }else{
+      $acl      = $ui->get_permissions($this->selectedBase,"application/application");
+      $acl_all  = $ui->has_complete_category_acls($this->parent->app_base,"application");
+    }
 
     /* Create Layers menu */
     $s  = ".|"._("Actions")."|\n";
 
     /* Append create options */
+    $s .= "..|<img src='images/lists/new.png' alt='' border='0' class='center'>".
+      "&nbsp;"._("Create")."|\n";
     if(preg_match("/c/",$acl)) {
-      $s .= "..|<img src='images/lists/new.png' alt='' border='0' class='center'>".
-        "&nbsp;"._("Create")."|\n";
       $s.= "...|<input class='center' type='image' src='images/list_new_app' alt=''>".
         "&nbsp;"._("Application")."|appl_new|\n";
     }
@@ -190,7 +147,7 @@ class divListApplication extends MultiSelectWindow
     /* Create links */
     $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'>";
-    $applimg  = "<img class='center' src='images/select_application.png' alt='A'  title='"._("Application")."'>";
+    $applimg  = "<img class='center' src='plugins/goto/images/select_application.png' alt='A'  title='"._("Application")."'>";
     $empty    = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
 
     /* set Page header */
@@ -209,28 +166,45 @@ class divListApplication extends MultiSelectWindow
       $acl = $ui->get_permissions($val['dn'],"application/application");
       $acl_all= $ui->has_complete_category_acls($val['dn'],"application");
 
+      /* Check FAI state 
+       */  
+      $FAIstate = $val['FAIstate'][0];
+
       /* Create action icons */
       $actions= "";
 
       /* Add copy & cut functionality */
-      $actions.= $this->parent->get_copypaste_action($val['dn'],"application","application");
+      if(!preg_match("/freeze/i",$FAIstate)){
+        $actions.= $this->parent->get_copypaste_action($val['dn'],"application","application");
+      }else{
+        $actions.= "<img src='images/empty.png' class='center' alt=''>&nbsp;";
+        $actions.= "<img src='images/empty.png' class='center' alt=''>&nbsp;";
+      }
 
       /* Add edit icon */
       $actions.= "<input class='center' type='image'
         src='images/lists/edit.png' alt='"._("edit")."' name='appl_edit_%KEY%' title='"._("Edit this entry")."'>";
 
       /* Add snapshot icon */
-      $actions.= $this->parent->get_snapshot_action($val['dn'],$this->module);
+      if(!preg_match("/freeze/i",$FAIstate)){
+        $actions.= $this->parent->get_snapshot_action($val['dn'],$this->module);
+      }else{
+        $actions.= "<img src='images/empty.png' class='center' alt=''>&nbsp;";
+        $actions.= "<img src='images/empty.png' class='center' alt=''>&nbsp;";
+      }
+
 
       /* If we are allowed to remove the application account, display remove icon */
-      if(preg_match("/d/",$acl)){
+      if(preg_match("/freeze/i",$FAIstate)){
+        $actions .= "<img src='plugins/goto/images/freeze.png' class='center' alt='!' title='"._("Freezed")."'>";
+      }elseif(preg_match("/d/",$acl)){
         $actions.= "<input class='center' type='image'
           src='images/lists/trash.png' alt='"._("delete")."' name='appl_del_%KEY%' title='"._("Delete this entry")."'>";
       }else{
         $actions.= "<img src='images/empty.png' alt='&nbsp;'>";
       }
 
-      $title = "title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'";
+      $title = "title='".preg_replace('/ /', '&nbsp;', LDAP::fix($val['dn']))."'";
 
       if(!isset($val['description'][0])){
         $desc = "";
@@ -268,7 +242,7 @@ class divListApplication extends MultiSelectWindow
     $num_app_str = _("Number of listed applications");
     $num_dep_str = _("Number of listed departments");
   
-    $str = "<img class='center' src='images/select_application.png' 
+    $str = "<img class='center' src='plugins/goto/images/select_application.png' 
               title='".$num_app_str."' alt='".$num_app_str."'>&nbsp;".$num_apps."&nbsp;&nbsp;&nbsp;&nbsp;";
     $str.= "<img class='center' src='images/lists/folder.png' 
               title='".$num_dep_str."' alt='".$num_dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";