X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fogroups%2Fclass_ogroupManagement.inc;h=728c79c510c3d24edba264b06760859c6d3a46c1;hb=bff18a7c96f757ca1aefdff3ab57dc385d69b5dc;hp=577bd17423ccc974d0c93470d68ad443f497ce24;hpb=e7e2cdc50b1161a6c0a1b1d281d43c88ae0df7ee;p=gosa.git diff --git a/plugins/admin/ogroups/class_ogroupManagement.inc b/plugins/admin/ogroups/class_ogroupManagement.inc index 577bd1742..728c79c51 100644 --- a/plugins/admin/ogroups/class_ogroupManagement.inc +++ b/plugins/admin/ogroups/class_ogroupManagement.inc @@ -31,158 +31,123 @@ 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", - "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() { - /* Call parent execute */ - plugin::execute(); + /* Call parent execute */ + plugin::execute(); - /* Prepare template */ - $smarty= get_smarty(); + /**************** + Variable intialisation && Check posts for commands + ****************/ - $ogroupfilter= get_global("ogroupfilter"); + $_SESSION['LOCK_VARS_TO_USE'] = array("/^act$/","/^id$/","/^group_edit_/","/^group_del_/"); + + $smarty = get_smarty(); $s_action = ""; $s_entry = ""; - foreach( array("depselect", "regex") as $type){ - if (isset($_POST[$type])){ - $ogroupfilter[$type]= $_POST[$type]; - } - } - if (isset($_POST['Ogroup_dialog_posted'])){ - foreach( array("usergroups", "groupgroups", "appgroups", "depgroups", - "servergroups", "wsgroups", "prtgroups", "tcgroups", "fongroups") as $type){ - - 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; - } - /* Test Posts */ foreach($_POST as $key => $val){ // Post for delete - if(preg_match("/group_del.*/",$key)){ + if(preg_match("/^group_del.*/",$key)){ $s_action = "del"; - $s_entry = preg_replace("/group_".$s_action."_/i","",$key); + $s_entry = preg_replace("/^group_".$s_action."_/i","",$key); // Post for edit - }elseif(preg_match("/group_edit_.*/",$key)){ + }elseif(preg_match("/^group_edit_.*/",$key)){ $s_action="edit"; - $s_entry = preg_replace("/group_".$s_action."_/i","",$key); + $s_entry = preg_replace("/^group_".$s_action."_/i","",$key); // Post for new - }elseif(preg_match("/dep_back.*/i",$key)){ - $s_action="back"; - }elseif(preg_match("/group_new.*/",$key)){ + }elseif(preg_match("/^group_new.*/",$key)){ $s_action="new"; - }elseif(preg_match("/dep_home.*/i",$key)){ - $s_action="home"; - }elseif(preg_match("/group_tplnew.*/i",$key)){ + }elseif(preg_match("/^group_tplnew.*/i",$key)){ $s_action="new_tpl"; - }elseif(preg_match("/group_chgpw.*/i",$key)){ + }elseif(preg_match("/^group_chgpw.*/i",$key)){ $s_action="change_pw"; $s_entry = preg_replace("/group_chgpw_/i","",$key); - }elseif(preg_match("/dep_root.*/i",$key)){ - $s_action="root"; + }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("/_group_edit_/",$key)){ + $type = preg_replace("/_group_edit_.*$/","",$key); + $s_action="edit"; + $s_entry = preg_replace("/".$type."_group_edit_/i","",$key); + $_POST['arg'] = $type; } } $s_entry = preg_replace("/_.$/","",$s_entry); - /* Department changed? */ - if(isset($_POST['depselect']) && $_POST['depselect']){ - $ogroupfilter['depselect']= $_POST['depselect']; + // Edit if + if((isset($_GET['act']))&&($_GET['act']=="edit_entry")){ + $s_action ="edit"; + $s_entry = $_GET['id']; } - /* Start for New List Managment */ - if(isset($_GET['act'])&&($_GET['act']=="dep_open")){ - $s_action="open"; - $s_entry = base64_decode($_GET['dep_id']); - $ogroupfilter['depselect']= "".$this->config->departments[trim($s_entry)]; - } - /* If Backbutton is Posted */ - if($s_action=="back"){ - $base_back = preg_replace("/^[^,]+,/","",$ogroupfilter['depselect']); - $base_back = convert_department_dn($base_back); + /**************** + Copy & Paste handling + ****************/ - if(isset($this->config->departments[trim($base_back)])){ - $ogroupfilter['depselect']= $this->config->departments[trim($base_back)]; - }else{ - $ogroupfilter['depselect']= $this->config->departments["/"]; - } - register_global("ogroupfilter", $ogroupfilter); - } + /* Only perform copy / paste if it is enabled + */ - /* Homebutton is posted */ - if($s_action=="home"){ - $ogroupfilter['depselect']=(preg_replace("/^[^,]+,/","",$this->ui->dn)); - $ogroupfilter['depselect']=(preg_replace("/^[^,]+,/","",$ogroupfilter['depselect'])); - } - /* root posted */ - if($s_action=="root"){ - $ogroupfilter['depselect']=($this->config->current['BASE']); - } + /******************** + Copy & Paste Handling ... + ********************/ - // Edit if - if((isset($_GET['act']))&&($_GET['act']=="edit_entry")){ - $s_action ="edit"; - $s_entry = $_GET['id']; - } + /* Only perform copy&paste requests if it is enabled + */ + /* Get 'dn' from posted 'uid' */ + if(in_array_ics($s_action,array("editPaste","cut","copy")) || (isset($this->CopyPasteHandler) && $this->CopyPasteHandler->stillOpen())){ - register_global("ogroupfilter", $ogroupfilter); + if(isset($this->ogrouplist[trim($s_entry)]['dn'])){ + $dn= $this->ogrouplist[trim($s_entry)]['dn']; + }else{ + $dn = $this->DivListOGroup->selectedBase; + } - $this->reload(); + $acl= get_permissions ($dn, $this->ui->subtreeACL); + $acl= get_module_permission($acl, "ogroup", $dn); - /* Check for exeeded sizelimit */ - if (($message= check_sizelimit()) != ""){ - return($message); + if($acl != "#all#"){ + print_red (_("You are not allowed to execute this method!")); + }else{ + /* 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 ($s_action=="new"){ @@ -192,9 +157,14 @@ class ogroupManagement extends plugin /* Create new usertab object */ $this->ogroup= new ogrouptabs($this->config, - $this->config->data['TABS']['OGROUPTABS'], $this->dn); + $this->config->data['TABS']['OGROUPTABS'], $this->dn); } + + /**************** + Delete object group + ****************/ + if ($s_action=="del"){ /* Get 'dn' from posted 'uid' */ @@ -214,7 +184,7 @@ 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))); return($smarty->fetch(get_template_path('remove.tpl', TRUE))); } else { @@ -224,6 +194,11 @@ class ogroupManagement extends plugin } } + + /**************** + Delete confirmed + ****************/ + /* Confirmation for deletion has been passed. Group should be deleted. */ if (isset($_POST['delete_group_confirm'])){ @@ -233,15 +208,12 @@ class ogroupManagement extends plugin /* Delete request is permitted, perform LDAP action */ $this->ogroup= new ogrouptabs($this->config, - $this->config->data['TABS']['OGROUPTABS'], $this->dn); + $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 @@ -256,13 +228,22 @@ class ogroupManagement extends plugin } + /**************** + Delete object group Canceled + ****************/ + /* Delete group canceled? */ if (isset($_POST['delete_cancel'])){ del_lock ($this->dn); unset($_SESSION['objectinfo']); } - if ($s_action=="edit"){ + + /**************** + Edit group + ****************/ + + if (($s_action=="edit") && (! isset($this->ogroup->config)) ){ /* Get 'dn' from posted 'uid', must be unique */ $this->dn= $this->ogrouplist[$s_entry]['dn']; @@ -287,8 +268,13 @@ class ogroupManagement extends plugin $_SESSION['objectinfo']= $this->dn; } + + /**************** + Edit finished save + ****************/ + /* Finish button has been pressed */ - if (isset($_POST['edit_finish'])){ + if ((isset($_POST['edit_finish'])) && (isset($this->ogroup->config)) ){ /* Check tabs, will feed message array */ $message= $this->ogroup->check(); @@ -306,9 +292,6 @@ class ogroupManagement extends plugin 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']); @@ -320,22 +303,32 @@ 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.= "

\n"; - $display.= "\n"; + $display.= "\n"; $display.= " \n"; $display.= "\n"; $display.= "

"; @@ -343,132 +336,22 @@ class ogroupManagement extends plugin return ($display); } - /* Prepare departments */ - $options= ""; - foreach ($this->config->idepartments as $key => $value){ - if ($ogroupfilter['depselect'] == $key){ - $options.= ""; - } else { - $options.= ""; - } - } - - // Managment - $listhead = "
". - "  ". - "  ". - "  ". - "  ". - " ". - "  ". - _("Current base")." ". - "  ". - "
"; - - - $actions = ""; - $actions.= ""; - - // Defining Links - $linkopen = "%s"; - - // image Buttons - $editlink = "%s"; - $userimg = "User"; - - // Extension images - $mailimg = "M"; - - // Space - $empty = ""; - - // List Setup - $divlist = new divlist("ogroubstab"); - $divlist->SetHeader(array( - array("string" => " ", "attach" => "style='text-align:center;width:20px;'"), - array("string" => _("Name of object groups")." / "._("Departments"), "attach" => "style=''"), - array("string" => _("Properties"), "attach" => "style='width:136px;'"), - array("string" => _("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'") - )); - - - $divlist->SetSummary(_("This table displays all groups, in the selected tree.")); - $divlist->SetEntriesPerPage(0); - - foreach($this->departments as $key=> $val){ - - if(!isset($this->config->departments[trim($key)])){ - $this->config->departments[trim($key)]=""; - } - - $non_empty=""; - $keys= str_replace("/","\/",$key); - foreach($this->config->departments as $keyd=>$vald ){ - if(preg_match("/".$keys."\/.*/",$keyd)){ - $non_empty="full"; - } - } - - - - $field1 = array("string" => ""._("Department")."", "attach" => "style='text-align:center;width:20px;'"); - $field2 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "style=''"); - $field3 = array("string" => " ", "attach" => "style='width:136px;'"); - $field4 = array("string" => " ", "attach" => "style='width:60px;border-right:0px;text-align:right;'"); - - $divlist->AddEntry(array($field1,$field2,$field3,$field4)); - } - - // Assigning ogroups - foreach($this->ogrouplist as $key => $val){ - - if(isset($val['mail'])){ - $mail = $mailimg; - }else{ - $mail = $empty; - } - - $title = "title='dn : ".$val['dn']."'"; - - if(!isset($val['description'][0])){ - $desc = ""; - }else{ - $desc = " - [ ".$val['description'][0]." ]"; - } - $field1 = array("string" => ""._("Object group")."", "attach" => "style='text-align:center;width:20px;'"); - $field2 = array("string" => sprintf($editlink,$key,($val['cn']['0'].$desc)), "attach" => "style='' ".$title); - $field3 = array("string" => $this->convert_list($val)." ".$mail, "attach" => "style='width:136px;'"); - $field4 = array("string" => preg_replace("/%KEY%/", $key, $actions), "attach" => "style='width:60px;border-right:0px;text-align:right;'"); - - $divlist->AddEntry(array($field1,$field2,$field3,$field4)); - } - - + /**************** + Display list + ****************/ + /* Display dialog with group list */ + $this->DivListOGroup->parent = $this; + $this->DivListOGroup->execute(); - - /* 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("groupshead", $listhead); - $smarty->assign("groups", $divlist->DrawList()); - - foreach( array("usergroups", "groupgroups", "appgroups", "depgroups", - "servergroups", "wsgroups", "prtgroups", "tcgroups", "fongroups", "regex", "depselect") as $type){ - $smarty->assign("$type", $ogroupfilter[$type]); + /* Add departments if subsearch is disabled */ + if(!$this->DivListOGroup->SubSearch){ + $this->DivListOGroup->AddDepartments($this->DivListOGroup->selectedBase,4); } - - $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))); + $this->reload (); + $this->DivListOGroup->setEntries($this->ogrouplist); + return($this->DivListOGroup->Draw()); } @@ -476,17 +359,16 @@ name='dep_root' alt='"._("Root")."'> ". { $temp= ""; - $conv= array( - "U" => array("select_user.png",_("User")), - "G" => array("select_groups.png",_("Group")), - "A" => array("select_application.png",_("Application")), - "D" => array("select_department.png",_("Department")), - "S" => array("select_server.png",_("Server")), - "F" => array("select_phone.png",_("Phone")), - "W" => array("select_workstation.png",_("Workstation")), - "T" => array("select_terminal.png",_("Terminal")), - "P" => array("select_printer.png",_("Printer"))); + "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]; @@ -495,117 +377,68 @@ name='dep_root' alt='"._("Root")."'> ". $p1['pic']= $conv[$type[0]][0]; $p1['tit']= $conv[$type[0]][1]; $p1['alt']= $type[0]; + $p1['lnk']= $conv[$type[0]][2]; } else { $p1['pic']= "empty.png"; $p1['tit']= ""; $p1['alt']= ""; + $p1['lnk']= "";//$conv[$type[0]][2]; } + 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]; } else { $p2['pic']= "empty.png"; $p2['alt']= ""; $p2['tit']= ""; + $p2['lnk']= ""; //$conv[$type[0]][2]; } - $temp = "".$p1["; - $temp.= "".$p2["; + $temp = ""; + $temp.= ""; 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= "*"; - } - - /* User filter? */ - $this->oogrouplist= array(); - - /* Generate oogrouplist 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 ($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*)"; + /* 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.= "(gosaGroupObjects=[])"; + $filter= "(&(cn=$Regex)(objectClass=gosaGroupOfNames)(|$filter))"; - if ($filter != ""){ - $filter= "(&(cn=$regex)(objectClass=gosaGroupOfNames)(|$filter))"; - } else { - $filter= "(&(cn=$regex)(objectClass=gosaGroupOfNames))"; + if($this->DivListOGroup->SubSearch){ + $res= get_list($filter, $this->ui->subtreeACL, $base, array("cn","objectClass","gosaGroupObjects"), GL_SIZELIMIT | GL_SUBSEARCH); + }else{ + $res= get_list($filter, $this->ui->subtreeACL, get_groups_ou().$base, array("cn","objectClass","gosaGroupObjects"), GL_SIZELIMIT ); } - - $groups = ($this->config->current['GROUPS']); - $res= get_list($this->ui->subtreeACL, "$filter",FALSE, $groups.",".$base, array("*"), TRUE); $this->ogrouplist= $res; ksort ($this->ogrouplist); reset ($this->ogrouplist); - - - /* NEW LIST MANAGMENT - * We also need to search for the departments - * So we are able to navigate like in konquerer - */ - $base2 = preg_replace("/ou=people,/i","",$base); - - $res3 = get_list2($this->ui->subtreeACL, "(&(|(ou=$regex)(description=$regex))(objectClass=gosaDepartment))", - TRUE, $base2, array("ou", "description"), TRUE); - - - - $this->departments= array(); - $tmp = array(); - foreach ($res3 as $value){ - $tmp[strtolower($value['dn']).$value['dn']]=$value; - } - ksort($tmp); - foreach($tmp as $value){ - if(isset($value["description"][0])){ - $this->departments[$value['dn']]=convert_department_dn2($value['dn'])." - [".$value["description"][0]."]"; - }else{ - $this->departments[$value['dn']]=convert_department_dn2($value['dn']);//$value["description"][0]; - } - } - /* END NEW LIST MANAGMENT - */ - $tmp=array(); foreach($this->ogrouplist as $tkey => $val ){ $tmp[strtolower($val['cn'][0]).$val['cn'][0]]=$val; @@ -616,11 +449,52 @@ name='dep_root' alt='"._("Root")."'> ". $this->ogrouplist[]=$val; } reset ($this->ogrouplist); + } + + function save_object() + { + $this->DivListOGroup->save_object(); + } + + 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']; + $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']; + $obj = new ogrouptabs($this->config, $this->config->data['TABS']['OGROUPTABS'], $dn); + $this->CopyPasteHandler->Cut($obj); + } + } + } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: