Code

Updated system tabs
[gosa.git] / plugins / admin / systems / tabs_terminal.inc
index 5f5e47eea73c66a797388caf6ad1245446d9e24a..faa156a453782c8a923f2c0d963830a84df05d52 100644 (file)
@@ -3,7 +3,7 @@
 class termtabs extends tabs
 {
 
-  function termtabs($config, $data, $dn)
+  function termtabs($config, $data, $dn, $category)
   {
     /* Save dn */
     $this->dn= $dn;
@@ -12,11 +12,11 @@ class termtabs extends tabs
     foreach ($data as $tab){
       if($tab['CLASS'] == "printgeneric"){
         $this->by_name[$tab['CLASS']]= $tab['NAME'];
-        $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn,$this);
+        $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn, $category);
         $this->by_object[$tab['CLASS']]->parent= &$this;
       }else{
         $this->by_name[$tab['CLASS']]= $tab['NAME'];
-        $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn);
+        $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn, $category);
         $this->by_object[$tab['CLASS']]->parent= &$this;
       }
       /* Initialize current */
@@ -24,6 +24,9 @@ class termtabs extends tabs
         $this->current= $tab['CLASS'];
       }
     }
+
+    /* Add references/acls/snapshots */
+    $this->addSpecialTabs();
   }
 
   function save_object($save_current= FALSE)
@@ -42,6 +45,7 @@ class termtabs extends tabs
        'dn' to all plugins */
     $baseobject= $this->by_object['termgeneric'];
     $this->dn= "cn=".$baseobject->cn.",ou=terminals,ou=systems,".$baseobject->base;
+    $baseobject->dn= $this->dn;
 
     foreach ($this->by_object as $key => $obj){
       $this->by_object[$key]->dn= $this->dn;
@@ -53,6 +57,8 @@ class termtabs extends tabs
       $this->by_object['printgeneric']->remove_from_parent();
     }
 
+    /* Fix tagging if needed */
+    $baseobject->handle_object_tagging();
   }
 
 }