Code

Updated application acls
[gosa.git] / gosa-plugins / goto / admin / applications / class_divListApplication.inc
index f70d5c618d77ffe1444cd438f4f96308e8257207..7c57a001d888ad8ef29b8aa27dab468ca7be2958 100644 (file)
@@ -3,9 +3,6 @@
 class divListApplication extends MultiSelectWindow
 {
   /* Current base */
-  var $selectedBase       = "";
-  var $selectedRelease    = "main";
-  var $AvailableReleases  = array();
   var $departments        = array();
   var $parent               ;
   var $ui                   ;
@@ -15,15 +12,12 @@ class divListApplication extends MultiSelectWindow
 
   /* Subsearch checkbox */
   var $SubSearch;
-
-  var $SaveAdditionalVars = array("selectedRelease");
+  var $selectedBase ="";
 
   function divListApplication (&$config,&$parent)
   {
     MultiSelectWindow::MultiSelectWindow($config,"Application", "application");
-   
-    $this->selectedRelease = get_ou('applicationou').session::get('CurrentMainBase');
+  
     $this->parent       = &$parent;
     $this->ui           = get_userinfo();
 
@@ -33,7 +27,6 @@ class divListApplication extends MultiSelectWindow
 
     /* Result page will look like a headpage */
     $this->SetHeadpageMode();
-    $this->SetInformation(_("This menu allows you to add, edit and remove selected applications. You may want to use the range selector on top of the application listbox, when working with a large number of applications."));
 
     $this->EnableAplhabet(true);
   
@@ -49,7 +42,7 @@ class divListApplication extends MultiSelectWindow
 
 
     /* Toggle all selected / deselected */
-    $chk = "<input type='checkbox' id='select_all' name='select_all'
+    $chk = "<input type='checkbox' id='select_all' name='select_all' title='"._("Select all")."'
                onClick='toggle_all_(\"^item_selected_[0-9]*$\",\"select_all\");' >";
 
     /* set Page header */
@@ -59,24 +52,29 @@ class divListApplication extends MultiSelectWindow
     $this->AddHeader(array("string" => _("Actions"),            "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
 
     /* Add SubSearch checkbox */
-    $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Search in subtrees"), false);
+    $this->AddCheckBox("SubSearch",  msgPool::selectToView("","subsearch"), msgPool::selectToView("","subsearch_small"), false);
 
     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
     $this->AddRegex   ("Regex",     _("Display users matching"),"*" , true);
   }
 
-  function AddUserBoxToFilter($position){
+
+  function AddUserBoxToFilter($position)
+  {
     $str = "";
     if(($position  == 2) && ($this->parent->IsReleaseManagementActivated($this->config))){
       $smarty = get_smarty();
-      $smarty->assign("selectedRelease",$this->selectedRelease);
+      $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("releases",$this->AvailableReleases);
+      $smarty->assign("app_releases", $releases);
       $str = $smarty->fetch(get_template_path('release_select.tpl', TRUE));
     }
     return($str);
   }
 
+
   function GenHeader()
   {
     /* Prepare departments,
@@ -84,97 +82,101 @@ class divListApplication extends MultiSelectWindow
     */
     $options= "";
 
-    /* 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));
+    /* Add default header */
+    $listhead = MultiSelectWindow::get_default_header(false);
+
+    if(!$this->parent->IsReleaseManagementActivated()){
+      
+      /* 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'];
+      }
 
-    $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'];
+          }
 
-    /* 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>";
+          }
         }
+      }
 
-        $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;
       }
-    }
 
-    /* The currently used base is not visible with your acl setup.
-     * Set base to first useable base.
-     */
-    if(!$found){
-      $this->selectedBase = $first;
+
+      /* And the rest, a base selection box */
+      $listhead .= _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
+        " <input class='center' type='image' src='images/lists/submit.png' align='middle' 
+          title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;";
     }
 
     /* Get acls */
     $ui       = get_userinfo();
-    $acl      = $ui->get_permissions("cn=dummy,".$this->selectedBase,"application/application");
-    $acl_all  = $ui->has_complete_category_acls($this->selectedBase,"application");
-
-    /* Add default header */
-    $listhead = MultiSelectWindow::get_default_header();
-
-    /* And the rest, a base selection box */
-    $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;";
+    $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";
-    $s .= "..|<img src='images/list_new.png' alt='' border='0' class='center'>".
-      "&nbsp;"._("Create")."|\n";
 
     /* Append create options */
     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";
     }
 
     /* Multiple options */
     $s.= "..|---|\n";
-    $s.= "..|<img src='images/edittrash.png' alt='' border='0' class='center'>".
+    $s.= "..|<img src='images/lists/trash.png' alt='' border='0' class='center'>".
       "&nbsp;"._("Remove")."|"."remove_multiple|\n";
 
-    /* Add multiple copy & cut icons */
-    if(is_object($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
+    if(is_object($this->parent->CopyPasteHandler) && preg_match("/r/",$acl_all)){
       $s.= "..|---|\n";
-      $s.= "..|<img src='images/editcopy.png' alt='' border='0' class='center'>".
+      $s.= "..|<img src='images/lists/copy.png' alt='' border='0' class='center'>".
         "&nbsp;"._("Copy")."|"."multiple_copy_systems|\n";
-      $s.= "..|<img src='images/editcut.png' alt='' border='0' class='center'>".
+      $s.= "..|<img src='images/lists/cut.png' alt='' border='0' class='center'>".
         "&nbsp;"._("Cut")."|"."multiple_cut_systems|\n";
+    }
 
-      if($this->parent->CopyPasteHandler->entries_queued()){
-        $img = "<img border='0' class='center' src='images/editpaste.png' alt=''>";
-        $s.="..|".$img."&nbsp;"._("Paste")."|editPaste|\n";
-      }else{
-        $img = "<img border='0' class='center' src='images/cant_editpaste.png' alt=''>";
-        $s.="..|".$img."&nbsp;"._("Paste")."\n";
-      }
+    /* Copy & paste icons */
+    if(is_object($this->parent->CopyPasteHandler) && $this->parent->CopyPasteHandler->entries_queued()){
+      $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
+      $s.="..|".$img."&nbsp;"._("Paste")."|editPaste|\n";
+    }else{
+      $img = "<img border='0' class='center' src='images/lists/paste-grey.png' alt=''>";
+      $s.="..|".$img."&nbsp;"._("Paste")."\n";
     }
 
     /* Add snapshot icons */
@@ -185,18 +187,17 @@ class divListApplication extends MultiSelectWindow
 
     $this->SetDropDownHeaderMenu($s);
     $this->SetListHeader($listhead);
-
-    $this->SetListHeader($listhead);
   }
 
+
   /* so some basic settings */
   function execute()
   {
     $this->ClearElementsList();
     $this->GenHeader();
-    $this->AvailableReleases = $this->parent->getReleases($this->selectedBase);
   }
 
+
   function setEntries($list)
   {
     /********************
@@ -206,7 +207,7 @@ class divListApplication 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='images/select_groups.png' alt='User'    title='%s'>";
+    $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")."'>";
     $empty    = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
 
@@ -230,30 +231,36 @@ class divListApplication extends MultiSelectWindow
       $actions= "";
 
       /* Add Copy & Paste icon */
-      if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
-        /* Only add cut icon, if we are allowed to move this user */
-        if(preg_match("/m/",$acl)){
-          $actions.= "<input class='center' type='image'
-            src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
-
-          $actions.= "<input class='center' type='image'
-            src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
-        }
+      if(preg_match("/(r.*d|r.*d)/",$acl_all) && $this->parent->CopyPasteHandler){
+        $actions .= "<input class='center' type='image'
+          src='images/lists/cut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
+      }else{
+        $actions.="<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
+      }
+
+      if(preg_match("/r/",$acl_all) && $this->parent->CopyPasteHandler){
+        $actions.= "<input class='center' type='image'
+          src='images/lists/copy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
+      }else{
+        $actions.="<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
       }
 
       /* Add edit icon */
       $actions.= "<input class='center' type='image'
-        src='images/edit.png' alt='"._("edit")."' name='appl_edit_%KEY%' title='"._("Edit this entry")."'>";
+        src='images/lists/edit.png' alt='"._("edit")."' name='appl_edit_%KEY%' title='"._("Edit this entry")."'>";
 
-
-      if(preg_match("/(c.*w|w.*c)/",$acl_all)){
+      /* Add snapshot icon */
+      if(preg_match("/(r.*w|w.*r)/",$acl_all)){
         $actions.= $this->GetSnapShotActions($val['dn']);
+      }else{
+        $actions.="<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
+        $actions.="<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
       }
 
       /* If we are allowed to remove the application account, display remove icon */
       if(preg_match("/d/",$acl)){
         $actions.= "<input class='center' type='image'
-          src='images/edittrash.png' alt='"._("delete")."' name='appl_del_%KEY%' title='"._("Delete this entry")."'>";
+          src='images/lists/trash.png' alt='"._("delete")."' name='appl_del_%KEY%' title='"._("Delete this entry")."'>";
       }else{
         $actions.= "<img src='images/empty.png' alt='&nbsp;'>";
       }
@@ -298,7 +305,7 @@ class divListApplication extends MultiSelectWindow
   
     $str = "<img class='center' src='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/folder.png' 
+    $str.= "<img class='center' src='images/lists/folder.png' 
               title='".$num_dep_str."' alt='".$num_dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";
 
     $this->set_List_Bottom_Info($str);
@@ -313,9 +320,6 @@ class divListApplication extends MultiSelectWindow
   {
     /* Save automatic created POSTs like regex, checkboxes */
     MultiSelectWindow::save_object(); 
-    $appfilter = session::get('appfilter');
-    $appfilter['release']  = $this->selectedRelease;
-    session::set('appfilter',$appfilter);
   }
 
 }