Code

Applied patches from 2.5 Revision: 6519
[gosa.git] / plugins / admin / ogroups / class_ogroupManagement.inc
index 9313b771725f4d42c06eb2ee368d8149471e6c28..14f9d9f97ef32540864659651ec9f2c68da3525b 100644 (file)
@@ -31,116 +31,195 @@ class ogroupManagement extends plugin
   var $obtypes= array();
   var $ogroup;
 
+  var $CopyPasteHandler = NULL;
+  var $DivListOGroup    = NULL;
+
   function ogroupManagement ($config, $dn= NULL)
   {
     /* Include config object */
     $this->config= $config;
     $this->ui= get_userinfo();
 
-    /* Fill translation array */
-    $this->obtypes= array(     "posixAccount" => _("UNIX accounts"),
-        "posixGroup" => _("Groups"),
-        "gosaDepartment" => _("Departments"),
-        "gosaApplication" => _("Applications"),
-        "goServer" => _("Servers"),
-        "gotoTerminal" => _("Thin Clients"),
-        "gotoWorkstation" => _("Workstations"),
-        "goFonHardware" => _("Phone"),
-        "gotoPrinter" => _("Printer"));
-    asort($this->obtypes);
-
-    /* Get global filter config */
-    if (!is_global("ogroupfilter")){
-      $ui= get_userinfo();
-      $base= get_base_from_people($ui->dn);
-      $ogroupfilter= array(    "usergroups" => "checked",
-          "groupgroups" => "checked",
-          "appgroups" => "checked",
-          "depgroups" => "checked",
-          "servergroups" => "checked",
-          "wsgroups" => "checked",
-          "prtgroups" => "checked",
-          "emptygroups" => "checked",
-          "tcgroups" => "checked",
-          "fongroups" => "checked",
-          "depselect" => $base,
-          "regex" => "*");
-      register_global("ogroupfilter", $ogroupfilter);
+    /* Copy & Paste enabled ?
+     */
+    if((isset($this->config->data['MAIN']['ENABLECOPYPASTE']))&&(preg_match("/true/i",$this->config->data['MAIN']['ENABLECOPYPASTE'] ))){
+      $this->CopyPasteHandler = new CopyPasteHandler($this->config);
     }
+
+    /* Div lsit management */
+    $this->DivListOGroup = new divListOGroup($this->config,$this);
   }
 
   function execute()
   {
-    /* Prepare template */
-    $smarty= get_smarty();
-
-    /* Save data */
-    if (is_global("ogroupfilter")){
-      $ogroupfilter= get_global("ogroupfilter");
-    } else {
-      $ogroupfilter= array();
-    }
-    foreach( array("depselect", "regex") as $type){
-      if (isset($_POST[$type])){
-        $ogroupfilter[$type]= $_POST[$type];
+    /* Call parent execute */
+    plugin::execute();
+
+    /****************
+      Variable intialisation && Check posts for commands  
+     ****************/
+
+    $_SESSION['LOCK_VARS_TO_USE'] = array("/^act$/","/^id$/","/^group_edit_/","/^group_del_/","/^item_selected/","/^remove_multiple_ogroups/");
+
+    $smarty     = get_smarty();
+    $s_action   = "";
+    $s_entry    = "";
+
+    /* Test Posts */
+    foreach($_POST as $key => $val){
+      // Post for delete
+      if(preg_match("/^group_del.*/",$key)){
+        $s_action = "del";
+        $s_entry  = preg_replace("/^group_".$s_action."_/i","",$key);
+        // Post for edit
+      }elseif(preg_match("/^group_edit_.*/",$key)){
+        $s_action="edit";
+        $s_entry  = preg_replace("/^group_".$s_action."_/i","",$key);
+        // Post for new
+      }elseif(preg_match("/^group_new.*/",$key)){
+        $s_action="new";
+      }elseif(preg_match("/^editPaste.*/i",$key)){
+        $s_action="editPaste";
+      }elseif(preg_match("/^copy_.*/",$key)){
+        $s_action="copy";
+        $s_entry  = preg_replace("/^copy_/i","",$key);
+      }elseif(preg_match("/^cut_.*/",$key)){
+        $s_action="cut";
+        $s_entry  = preg_replace("/^cut_/i","",$key);
+      }elseif(preg_match("/^remove_multiple_ogroups/",$key)){
+        $s_action="del_multiple";
+      }elseif(preg_match("/_group_edit_/",$key)){
+        $type = preg_replace("/_group_edit_.*$/","",$key);
+        $s_action="edit";
+        $s_entry  = preg_replace("/".$type."_group_edit_/i","",$key);
+        $_POST['arg'] = $type;
       }
     }
-    if (isset($_POST['depselect'])){
-      foreach( array("usergroups", "groupgroups", "appgroups", "depgroups", "emptygroups",
-            "servergroups", "wsgroups", "prtgroups", "tcgroups", "fongroups") as $type){
+    $s_entry  = preg_replace("/_.$/","",$s_entry);
 
-        if (isset($_POST[$type])) {
-          $ogroupfilter[$type]= "checked";
-        } else {
-          $ogroupfilter[$type]= "";
-        }
-      }
-    }
-    if (isset($_GET['search'])){
-      $s= mb_substr($_GET['search'], 0, 1, "UTF8")."*";
-      if ($s == "**"){
-        $s= "*";
-      }
-      $ogroupfilter['regex']= $s;
-    }
-    register_global("ogroupfilter", $ogroupfilter);
-
-    /* Prepare formular */
-    if (!isset($this->ogroup) &&
-        !isset($_POST['new_group']) &&
-        !isset($_POST['delete_group']) &&
-        !isset($_POST['select_group'])){
-      $this->reload();
+    // Edit if
+    if((isset($_GET['act']))&&($_GET['act']=="edit_entry")){
+      $s_action ="edit";
+      $s_entry  = $_GET['id'];
     }
 
-    /* Check for exeeded sizelimit */
-    if (($message= check_sizelimit()) != ""){
-      return($message);
+
+    /****************
+      Copy & Paste handling 
+     ****************/
+
+    /* Display the copy & paste dialog, if it is currently open */
+    $ret = $this->copyPasteHandling($s_action,$s_entry);
+    if($ret){
+      return($ret);
     }
 
+    /****************
+      Create a new object group 
+     ****************/
+
     /* New group? */
-    if (isset($_POST['new_group'])){
+    if ($s_action=="new"){
 
       /* By default we set 'dn' to 'new', all relevant plugins will
          react on this. */
       $this->dn= "new";
 
       /* Create new usertab object */
-      $this->ogroup= new ogrouptabs($this->config,
-          $this->config->data['TABS']['OGROUPTABS'], $this->dn);
-      $this->ogroup->set_acl(array(':all'));
+      $this->ogroup= new ogrouptabs($this->config,$this->config->data['TABS']['OGROUPTABS'], $this->dn,"ogroups");
+      $this->ogroup->set_acl_base($this->DivListOGroup->selectedBase);
     }
 
-    if (isset($_POST['delete_group']) && isset($_POST['grouplist'])){
+
+    /********************
+      Delete MULTIPLE entries requested, display confirm dialog
+     ********************/
+    if ($s_action=="del_multiple"){
+      $ids = $this->list_get_selected_items();
+      if(count($ids)){
+        foreach($ids as $id){
+          $dn = $this->ogrouplist[$id]['dn'];
+          if (($user= get_lock($dn)) != ""){
+            return(gen_locked_message ($user, $dn));
+          }
+          $this->dns[$id] = $dn;
+        }
+        $dns_names = "<br><pre>";
+        foreach($this->dns as $dn){
+          add_lock ($dn, $this->ui->dn);
+          $dns_names .= $dn."\n";
+        }
+        $dns_names .="</pre>";
+        /* Lock the current entry, so nobody will edit it during deletion */
+        if (count($this->dns) == 1){
+          $smarty->assign("info",     sprintf(_("You're about to delete the following object entry %s"), @LDAP::fix($dns_names)));
+        } else {
+          $smarty->assign("info",     sprintf(_("You're about to delete the following object entries %s"), @LDAP::fix($dns_names)));
+        }
+        $smarty->assign("multiple", true);
+        return($smarty->fetch(get_template_path('remove.tpl', TRUE)));
+      }
+    }
+
+
+    /********************
+      Delete MULTIPLE entries confirmed
+     ********************/
+
+    /* Confirmation for deletion has been passed. Users should be deleted. */
+    if (isset($_POST['delete_multiple_ogroup_confirm'])){
+
+      /* Remove user by user and check acls before removeing them */
+      foreach($this->dns as $key => $dn){
+
+        $acl = $this->ui->get_permissions($dn, "ogroups");
+        if (preg_match('/d/', $acl)){
+
+          /* Delete request is permitted, perform LDAP action */
+          $this->ogroup= new ogrouptabs($this->config,$this->config->data['TABS']['OGROUPTABS'], $dn);
+          $this->ogroup->delete ();
+          unset ($this->ogroup);
+          $this->ogroup= NULL;
+        } else {
+
+          /* Normally this shouldn't be reached, send some extra
+             logs to notify the administrator */
+          print_red (_("You are not allowed to delete this object group!"));
+          new log("security","ogroups/".get_class($this),$dn,array(),"Tried to trick deletion.");
+        }
+        /* Remove lock file after successfull deletion */
+        del_lock ($dn);
+        unset($this->dns[$key]);
+      }
+    }
+
+
+    /********************
+      Delete MULTIPLE entries Canceled
+     ********************/
+
+    /* Remove lock */
+    if(isset($_POST['delete_multiple_ogroup_cancel'])){
+      foreach($this->dns as $key => $dn){
+        del_lock ($dn);
+        unset($this->dns[$key]);
+      }
+    }
+
+
+    /****************
+      Delete object group
+     ****************/
+
+    if ($s_action=="del"){
 
       /* Get 'dn' from posted 'uid' */
-      $this->dn= trim($_POST['grouplist']);
+      $this->dn= $this->ogrouplist[$s_entry]['dn'];
 
       /* Load permissions for selected 'dn' and check if
          we're allowed to remove this 'dn' */
-      $acl= get_permissions ($this->dn, $this->ui->subtreeACL);
-      $this->acl= get_module_permission($acl, "ogroup", $this->dn);
-      if (chkacl($this->acl, "delete") == ""){
+      $acl = $this->ui->get_permissions($this->dn,"ogroups");
+      if(preg_match("/d/",$acl)){
 
         /* Check locking, save current plugin in 'back_plugin', so
            the dialog knows where to return. */
@@ -150,7 +229,8 @@ class ogroupManagement extends plugin
 
         /* Lock the current entry, so nobody will edit it during deletion */
         add_lock ($this->dn, $this->ui->dn);
-        $smarty->assign("info", sprintf(_("You're about to delete the object group '%s'."), $this->dn));
+        $smarty->assign("info", sprintf(_("You're about to delete the object group '%s'."), @LDAP::fix($this->dn)));
+        $smarty->assign("multiple", false);
         return($smarty->fetch(get_template_path('remove.tpl', TRUE)));
       } else {
 
@@ -160,30 +240,31 @@ class ogroupManagement extends plugin
       }
     }
 
+
+    /****************
+      Delete confirmed 
+     ****************/
+
     /* Confirmation for deletion has been passed. Group should be deleted. */
     if (isset($_POST['delete_group_confirm'])){
 
       /* Some nice guy may send this as POST, so we've to check
          for the permissions again. */
-      if (chkacl($this->acl, "delete") == ""){
+      $acl = $this->ui->get_permissions($this->dn,"ogroups");
+      if(preg_match("/d/",$acl)){
 
         /* Delete request is permitted, perform LDAP action */
         $this->ogroup= new ogrouptabs($this->config,
             $this->config->data['TABS']['OGROUPTABS'], $this->dn);
-        $this->ogroup->set_acl(array($this->acl));
         $this->ogroup->delete ();
-        gosa_log ("Object group'".$this->dn."' has been removed");
         unset ($this->ogroup);
         $this->ogroup= NULL;
-
-        /* Group list has changed, reload it. */
-        $this->reload ();
       } else {
 
         /* Normally this shouldn't be reached, send some extra
            logs to notify the administrator */
         print_red (_("You are not allowed to delete this object group!"));
-        gosa_log ("Warning: '".$this->ui->uid."' tried to trick group deletion.");
+        new log("security","ogroups/".get_class($this),$dn,array(),"Tried to trick deletion.");
       }
 
       /* Remove lock file after successfull deletion */
@@ -192,16 +273,25 @@ class ogroupManagement extends plugin
     }
 
 
+    /****************
+      Delete object group Canceled
+     ****************/
+
     /* Delete group canceled? */
     if (isset($_POST['delete_cancel'])){
       del_lock ($this->dn);
       unset($_SESSION['objectinfo']);
     }
 
-    if ((isset($_POST['select_group']) || (isset($_POST['edit_helper']) && $_POST['edit_helper'] == "1")) && isset($_POST['grouplist']) && $_POST['grouplist'] != ""){
+
+    /****************
+      Edit group
+     ****************/
+
+    if (($s_action=="edit") && (! isset($this->ogroup->config)) ){
 
       /* Get 'dn' from posted 'uid', must be unique */
-      $this->dn= trim($_POST['grouplist']);
+      $this->dn= $this->ogrouplist[$s_entry]['dn'];
 
       /* Check locking, save current plugin in 'back_plugin', so
          the dialog knows where to return. */
@@ -213,18 +303,19 @@ class ogroupManagement extends plugin
          above dialog */
       add_lock ($this->dn, $this->ui->dn);
 
-      /* Set up the users ACL's for this 'dn' */
-      $acl= get_permissions ($this->dn, $this->ui->subtreeACL);
-
       /* Register grouptab to trigger edit dialog */
-      $this->ogroup= new ogrouptabs($this->config, $this->config->data['TABS']['OGROUPTABS'],
-          $this->dn);
-      $this->ogroup->set_acl($acl);
+      $this->ogroup= new ogrouptabs($this->config, $this->config->data['TABS']['OGROUPTABS'], $this->dn, "ogroups");
+      $this->ogroup->set_acl_base($this->dn);
       $_SESSION['objectinfo']= $this->dn;
     }
 
+
+    /****************
+      Edit finished save 
+     ****************/
+
     /* Finish button has been pressed */
-    if (isset($_POST['edit_finish'])){
+    if ((isset($_POST['edit_finish']) || isset($_POST['edit_apply'])) && (isset($this->ogroup->config)) ){
 
       /* Check tabs, will feed message array */
       $message= $this->ogroup->check();
@@ -234,21 +325,18 @@ class ogroupManagement extends plugin
 
         /* Save user data to ldap */
         $this->ogroup->save();
-        gosa_log ("Object group'".$this->dn."' has been saved");
 
-        /* Group has been saved successfully, remove lock from
-           LDAP. */
-        if ($this->dn != "new"){
-          del_lock ($this->dn);
-        }
-
-        /* There's no page reload so we have to read new users at
-           this point. */
-        $this->reload ();
-        unset ($this->ogroup);
-        $this->ogroup= NULL;
-        unset ($_SESSION['objectinfo']);
+        if (!isset($_POST['edit_apply'])){
+          /* Group has been saved successfully, remove lock from
+             LDAP. */
+          if ($this->dn != "new"){
+            del_lock ($this->dn);
+          }
 
+          unset ($this->ogroup);
+          $this->ogroup= NULL;
+          unset ($_SESSION['objectinfo']);
+        }
       } else {
         /* Ok. There seem to be errors regarding to the tab data,
            show message and continue as usual. */
@@ -256,159 +344,245 @@ class ogroupManagement extends plugin
       }
     }
 
+
+    /****************
+      Cancel edit object group
+     ****************/
+
     /* Cancel dialogs */
-    if (isset($_POST['edit_cancel'])){
+    if ((isset($_POST['edit_cancel']))  && (isset($this->ogroup->dn))){
       del_lock ($this->ogroup->dn);
       unset ($this->ogroup);
       $this->ogroup= NULL;
       unset($_SESSION['objectinfo']);
     }
 
+
+    /****************
+      Display open dialogs 
+     ****************/
+
     /* Show dialog if object is present */
-    if ($this->ogroup){
+    if (isset($this->ogroup->config)){
       $display= $this->ogroup->execute();
 
       /* Don't show buttons if tab dialog requests this */
       if (!$this->ogroup->by_object[$this->ogroup->current]->dialog){
         $display.= "<p style=\"text-align:right\">\n";
-        $display.= "<input type=submit name=\"edit_finish\" value=\""._("Finish")."\">\n";
+        $display.= "<input type=submit name=\"edit_finish\" style=\"width:80px\" value=\""._("Ok")."\">\n";
         $display.= "&nbsp;\n";
+        if ($this->dn != "new"){
+          $display.= "<input type=submit name=\"edit_apply\" value=\""._("Apply")."\">\n";
+          $display.= "&nbsp;\n";
+        }
         $display.= "<input type=submit name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
         $display.= "</p>";
       }
       return ($display);
     }
 
-    /* Show main page */
-    $smarty->assign("search_image", get_template_path('images/search.png'));
-    $smarty->assign("tree_image", get_template_path('images/tree.png'));
-    $smarty->assign("infoimage", get_template_path('images/info.png'));
-    $smarty->assign("launchimage", get_template_path('images/launch.png'));
-    $smarty->assign("deplist", $this->config->idepartments);
 
-    $smarty->assign("groups", $this->convert_list($this->grouplist));
+    /****************
+      Display list 
+     ****************/
 
-    foreach( array("usergroups", "groupgroups", "appgroups", "depgroups", "emptygroups",
-          "servergroups", "wsgroups", "prtgroups", "tcgroups", "fongroups", "regex", "depselect") as $type){
-      $smarty->assign("$type", $ogroupfilter[$type]);
+    /* Check if there is a snapshot dialog open */
+    $base = $this->DivListOGroup->selectedBase;
+    if($str = $this->showSnapshotDialog($base,$this->get_used_snapshot_bases())){
+      return($str);
     }
 
-    $smarty->assign("hint", print_sizelimit_warning());
-    $smarty->assign("apply", apply_filter());
-    $smarty->assign("alphabet", generate_alphabet());
-    return ($smarty->fetch (get_template_path('headpage.tpl', TRUE)));
+    /* Display dialog with group list */
+    $this->DivListOGroup->parent = $this;
+    $this->DivListOGroup->execute();
+
+    /* Add departments if subsearch is disabled */
+    if(!$this->DivListOGroup->SubSearch){
+      $this->DivListOGroup->AddDepartments($this->DivListOGroup->selectedBase,4,1);
+    }
+    $this->reload ();
+    $this->DivListOGroup->setEntries($this->ogrouplist);
+    return($this->DivListOGroup->Draw());
   }
 
 
+  /* Return departments, that will be included within snapshot detection */
+  function get_used_snapshot_bases()
+  {
+    return(array(get_groups_ou().$this->DivListOGroup->selectedBase));
+  }
+
+  
+
   function convert_list($input)
   {
     $temp= "";
-    $conv= array(   "U" => "select_user.png",
-        "G" => "select_groups.png",
-        "A" => "select_application.png",
-        "D" => "select_department.png",
-        "S" => "select_server.png",
-        "F" => "select_phone.png",
-        "W" => "select_workstation.png",
-        "T" => "select_terminal.png",
-        "P" => "select_printer.png");
-
-    foreach ($input as $key => $value){
-
-      /* Assemble picture */
-      $type= $value['type'];
-      if (isset($type[0])){
-        $p1= $conv[$type[0]];
-      } else {
-        $p1= "empty.png";
-      }
-      if (isset($type[1])){
-        $p2= $conv[$type[1]];
-      } else {
-        $p2= "empty.png";
-      }
 
-      /* Generate output */
-      $temp= "<option value=\"$key\" class=\"select\" style=\"background-image:url('combine.php?image1=$p1&amp;image2=$p2');padding-left:35px;\">".$value['text']."</option>\n".$temp;
+    $conv= array(   
+        "U" => array("select_user.png"        ,_("User")        , "ogroup"),
+        "G" => array("select_groups.png"      ,_("Group")       , "ogroup"),
+        "A" => array("select_application.png" ,_("Application") , "ogroup"),
+        "D" => array("select_department.png"  ,_("Department")  , "ogroup"),
+        "S" => array("select_server.png"      ,_("Server")      , "ogroup"),
+        "F" => array("select_phone.png"       ,_("Phone")       , "phonequeue"),
+        "W" => array("select_workstation.png" ,_("Workstation") , "workstartup"),
+        "T" => array("select_terminal.png"    ,_("Terminal")    , "termgroup"),
+        "P" => array("select_printer.png"     ,_("Printer")     , "ogroup"));
+
+    /* Assemble picture */
+    $type= $input['gosaGroupObjects'][0];
+    $type= preg_replace("/[^A-Z]/i","",$type);
+    if (isset($type[0])){
+      $p1['pic']= $conv[$type[0]][0];
+      $p1['tit']= $conv[$type[0]][1];
+      $p1['alt']= $type[0];
+      $p1['lnk']= $conv[$type[0]][2];
+      $html_object_1 = "<input type='image' name='".$p1['lnk']."_group_edit_%KEY' ";
+    } else {
+      $p1['pic']= "empty.png";
+      $p1['tit']= "";
+      $p1['alt']= "";
+      $p1['lnk']= "";//$conv[$type[0]][2];
+      $html_object_1 = "<img ";
     }
 
+    if (isset($type[1])){
+      $p2['pic']= $conv[$type[1]][0];
+      $p2['alt']= $type[1];
+      $p2['tit']= $conv[$type[1]][1];
+      $p2['lnk']= $conv[$type[1]][2];
+      $html_object_2 = "<input type='image' name='".$p2['lnk']."_group_edit_%KEY' ";
+    } else {
+      $p2['pic']= "empty.png";
+      $p2['alt']= "";
+      $p2['tit']= "";
+      $p2['lnk']= ""; //$conv[$type[0]][2];
+      $html_object_2 = "<img ";
+    }
+    
+    $temp = $html_object_1." class='center' id='iconA".preg_replace("/_/","",$p1['lnk']."_group_edit_%KEY")."' 
+      src='images/".$p1['pic']."' alt='".$p1['alt']."' title='".$p1['tit']."'>";
+    $temp.= $html_object_2." class='center' id='iconB".preg_replace("/_/","",$p2['lnk']."_group_edit_%KEY")."' 
+      src='images/".$p2['pic']."' alt='".$p2['alt']."' title='".$p2['tit']."'>";
     return ($temp);
   }
 
 
   function reload()
   {
-    /* Get config */
-    $ogroupfilter= get_global('ogroupfilter');
-
-    /* Set base for all searches */
-    $base= $ogroupfilter['depselect'];
-
-    /* Regex filter? */
-    if ($ogroupfilter['regex'] != ""){
-      $regex= $ogroupfilter['regex'];
-    } else {
-      $regex= "*";
+    /* Set base for all searches && initialise some vars */
+    $this->ogrouplist= array();
+    $base     = $this->DivListOGroup->selectedBase;
+    $filter   = "(gosaGroupObjects=[])";
+    $Regex    = $this->DivListOGroup->Regex;
+
+    $chk = array(
+        "UserGroups"          => "(gosaGroupObjects=*U*)" ,
+        "GroupGroups"         => "(gosaGroupObjects=*G*)" ,
+        "ApplicationGroups"   => "(gosaGroupObjects=*A*)" ,
+        "DepartmentGroups"    => "(gosaGroupObjects=*D*)" ,
+        "ServerGroups"        => "(gosaGroupObjects=*S*)" ,
+        "WorkstationGroups"   => "(gosaGroupObjects=*W*)" ,
+        "TerminalGroups"      => "(gosaGroupObjects=*T*)" ,
+        "PrinterGroups"       => "(gosaGroupObjects=*P*)" ,
+        "PhoneGroups"         => "(gosaGroupObjects=*F*)" );
+    /* Create filter */ 
+    foreach($chk as $chkBox => $FilterPart){
+      if($this->DivListOGroup->$chkBox){
+        $filter .=  $FilterPart;
+      }
     }
+    $filter= "(&(cn=$Regex)(objectClass=gosaGroupOfNames)(|$filter))";
 
-    /* User filter? */
-    $this->grouplist= array();
-
-    /* Generate grouplist filter */
-    $filter= "";
-
-    if ($ogroupfilter['usergroups'] == "checked"){
-      $filter.= "(gosaGroupObjects=*U*)";
-    }
-    if ($ogroupfilter['groupgroups'] == "checked"){
-      $filter.= "(gosaGroupObjects=*G*)";
-    }
-    if ($ogroupfilter['appgroups'] == "checked"){
-      $filter.= "(gosaGroupObjects=*A*)";
-    }
-    if ($ogroupfilter['depgroups'] == "checked"){
-      $filter.= "(gosaGroupObjects=*D*)";
-    }
-    if ($ogroupfilter['servergroups'] == "checked"){
-      $filter.= "(gosaGroupObjects=*S*)";
+    if($this->DivListOGroup->SubSearch){
+      $res= get_list($filter, "ogroups", $base, array("cn","objectClass","gosaGroupObjects"), GL_SIZELIMIT | GL_SUBSEARCH);
+    }else{
+      $res= get_list($filter, "ogroups", get_groups_ou().$base, array("cn","objectClass","gosaGroupObjects"), GL_SIZELIMIT );
     }
-    if ($ogroupfilter['wsgroups'] == "checked"){
-      $filter.= "(gosaGroupObjects=*W*)";
-    }
-    if ($ogroupfilter['prtgroups'] == "checked"){
-      $filter.= "(gosaGroupObjects=*P*)";
-    }
-    if ($ogroupfilter['tcgroups'] == "checked"){
-      $filter.= "(gosaGroupObjects=*T*)";
-    }
-    if ($ogroupfilter['fongroups'] == "checked"){
-      $filter.= "(gosaGroupObjects=*F*)";
+
+    $this->ogrouplist= $res;
+    ksort ($this->ogrouplist);
+    reset ($this->ogrouplist);
+    $tmp=array();
+    foreach($this->ogrouplist as $tkey => $val ){
+      $tmp[strtolower($val['cn'][0]).$val['cn'][0]]=$val;
     }
-    if ($ogroupfilter['emptygroups'] == "checked"){
-      $filter.= "(gosaGroupObjects=[])";
+    ksort($tmp);
+    $this->ogrouplist=array();
+    foreach($tmp as $val){
+      $this->ogrouplist[]=$val;
     }
+    reset ($this->ogrouplist);
+  }
 
-    if ($filter != ""){
-      $filter= "(&(cn=$regex)(objectClass=gosaGroupOfNames)(|$filter))";
-    } else {
-      $filter= "(&(cn=$regex)(objectClass=gosaGroupOfNames))";
+
+  function list_get_selected_items()
+  {
+    $ids = array();
+    foreach($_POST as $name => $value){
+      if(preg_match("/^item_selected_[0-9]*$/",$name)){
+        $id   = preg_replace("/^item_selected_/","",$name);
+        $ids[$id] = $id;
+      }
     }
-    $res= get_list($this->ui->subtreeACL, "$filter", TRUE, $base, array("cn", "description", "gosaGroupObjects"), TRUE);
-    foreach ($res as $value){
-      $pictype= preg_replace('/[\[\]]/', '', $value["gosaGroupObjects"][0]);
-      $sortstring= preg_split('//', $pictype, -1, PREG_SPLIT_NO_EMPTY);
-      sort($sortstring);
-      $pictype= implode("", $sortstring);
-      if (isset($value["description"][0])){
-        $this->grouplist[$value["dn"]]= array("text" => $value["cn"][0]." [".
-            $value["description"][0]."]", "type" => $pictype);
-      } else {
-        $this->grouplist[$value["dn"]]= array("text" => $value["cn"][0],
-            "type" => $pictype);
+    return($ids);
+  }
+
+
+  function copyPasteHandling($s_action,$s_entry)
+  {
+    if($this->CopyPasteHandler){
+
+      /* Paste copied/cutted object in here
+       */
+      if(($s_action == "editPaste") || ($this->CopyPasteHandler->stillOpen())){
+        $this->CopyPasteHandler->save_object();
+        $this->CopyPasteHandler->SetVar("base", $this->DivListOGroup->selectedBase);
+        return($this->CopyPasteHandler->execute());
+      }
+
+      /* Copy current object to CopyHandler
+       */
+      if($s_action == "copy"){
+    
+
+        $this->CopyPasteHandler->Clear();
+        $dn       =   $this->ogrouplist[$s_entry]['dn'];
+
+        /* Check acls */
+        $acl_all= $this->ui->has_complete_category_acls($dn,"ogroups");
+        if(preg_match("/(c.*w|w.*c)/",$acl_all)){
+          $obj      =   new ogrouptabs($this->config, $this->config->data['TABS']['OGROUPTABS'], $dn);
+          $objNew   =   new ogrouptabs($this->config, $this->config->data['TABS']['OGROUPTABS'], "new");
+
+          $types_of_tabs = $obj->by_object['ogroup']->gosaGroupObjects;
+          $objNew->by_object['ogroup']->gosaGroupObjects = $types_of_tabs;    
+          $objNew->reload($types_of_tabs);
+
+          $this->CopyPasteHandler->Copy($obj,$objNew);
+        }
+      }
+
+      /* Copy current object to CopyHandler
+       */
+      if($s_action == "cut"){
+        $this->CopyPasteHandler->Clear();
+        $dn       =   $this->ogrouplist[$s_entry]['dn'];
+
+        /* Check acls */
+        $acl_all= $this->ui->has_complete_category_acls($dn,"ogroups");
+        if(preg_match("/(c.*w|w.*c)/",$acl_all)){
+          $obj      =   new ogrouptabs($this->config, $this->config->data['TABS']['OGROUPTABS'], $dn);
+          $this->CopyPasteHandler->Cut($obj);
+        }
       }
     }
-    ksort ($this->grouplist);
-    reset ($this->grouplist);
+  }
+
+
+  function save_object()
+  {
+    $this->DivListOGroup->save_object();
   }
 
 }