Code

Fixed group base detection.
[gosa.git] / plugins / admin / groups / tabs_group.inc
index a4d0279dbd444368a4ab094b919d4a982f394eea..6fa256f5daa85b560bd60c3a63c82ba3c141ef2f 100644 (file)
@@ -3,15 +3,18 @@
 class grouptabs extends tabs
 {
 
-       function grouptabs($config, $data, $dn)
+       function grouptabs($config, $data, $dn,$acl_category)
        {
-               tabs::tabs($config, $data, $dn);
+               tabs::tabs($config, $data, $dn,$acl_category);
                $baseobject= $this->by_object['group'];
                foreach ($this->by_object as $name => $obj){
                        if(isset($obj->parent)){
                                $this->by_object[$name]->parent  = $this;
                        }
                }
+
+               /* Add references/acls/snapshots */
+               $this->addSpecialTabs();
        }
 
        function save_object($save_current= FALSE)
@@ -30,6 +33,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'];