Code

Updated css und div framework.
[gosa.git] / plugins / admin / groups / tabs_group.inc
index a4d0279dbd444368a4ab094b919d4a982f394eea..7800319c5584869662698c9a288de848e6340fcd 100644 (file)
@@ -5,13 +5,8 @@ class grouptabs extends tabs
 
        function grouptabs($config, $data, $dn)
        {
-               tabs::tabs($config, $data, $dn);
-               $baseobject= $this->by_object['group'];
-               foreach ($this->by_object as $name => $obj){
-                       if(isset($obj->parent)){
-                               $this->by_object[$name]->parent  = $this;
-                       }
-               }
+               tabs::tabs($config, $data, $dn,"groups");
+               $this->addSpecialTabs();
        }
 
        function save_object($save_current= FALSE)
@@ -30,6 +25,16 @@ class grouptabs extends tabs
                }
        }
 
+       function delete()
+       {
+               /* Put baseobjects 'cn' to mailobjects 'uid' */
+               $baseobject= $this->by_object['group'];
+               if (isset($this->by_object['mailgroup'])){
+                       $this->by_object['mailgroup']->uid= $baseobject->cn;
+               }
+               tabs::delete();
+       }
+
        function save()
        {
                $baseobject= $this->by_object['group'];
@@ -57,6 +62,7 @@ class grouptabs extends tabs
 
                        /* Write entry on new 'dn' */
                        if ($this->dn != "new"){
+                               $baseobject->update_acls($this->dn,$new_dn);
                                $baseobject->move($this->dn, $new_dn);
                                $this->by_object['group']= $baseobject;
                        }