Code

Updated an error message. fixed server acl string
[gosa.git] / plugins / admin / systems / tabs_terminal.inc
index 52513f9ee7a928fee6589be2cdcf53539e608b71..69540dda128ca4ab2cc88dc6d5a97c847c9c87f4 100644 (file)
@@ -3,9 +3,35 @@
 class termtabs extends tabs
 {
 
-  function termtabs($config, $data, $dn)
+  function termtabs($config, $data, $dn, $category)
   {
-    tabs::tabs($config, $data, $dn);
+    /* Save dn */
+    $this->dn= $dn;
+    $this->config= $config;
+
+    $baseobject= NULL;
+
+    foreach ($data as $tab){
+      $this->by_name[$tab['CLASS']]= $tab['NAME'];
+
+      if ($baseobject == NULL){
+        $baseobject= new $tab['CLASS']($this->config, $this->dn,NULL,$this);
+        $this->by_object[$tab['CLASS']]= $baseobject;
+      } else {
+        $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn, $baseobject,$this);
+      }
+
+      $this->by_object[$tab['CLASS']]->parent= &$this;
+      $this->by_object[$tab['CLASS']]->set_acl_category($category);
+
+      /* Initialize current */
+      if ($this->current == ""){
+        $this->current= $tab['CLASS'];
+      }
+    }
+
+    /* Add references/acls/snapshots */
+    $this->addSpecialTabs();
   }
 
   function save_object($save_current= FALSE)
@@ -13,8 +39,14 @@ class termtabs extends tabs
     tabs::save_object($save_current);
 
     /* Update reference, transfer variables */
-    $this->by_object['termstartup']->gotoTerminalPath=
-      $this->by_object['termgeneric']->gotoTerminalPath;
+    if(isset($this->by_object['termstartup'])){
+      $this->by_object['termstartup']->gotoTerminalPath= $this->by_object['termgeneric']->gotoTerminalPath;
+    }
+    
+    $base_obj = $this->by_object['termgeneric'];
+    foreach($this->by_object as $name => $plug){
+      $this->by_object[$name]->cn = $base_obj->cn;
+    }
   }
 
 
@@ -24,6 +56,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;
@@ -31,6 +64,14 @@ class termtabs extends tabs
     }
 
     tabs::save(TRUE);
+    if(isset($this->by_object['printgeneric'])){
+      if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){
+        $this->by_object['printgeneric']->remove_from_parent();
+      }
+    }
+
+    /* Fix tagging if needed */
+    $baseobject->handle_object_tagging();
   }
 
 }