Code

Updated workstation - Startup
[gosa.git] / plugins / admin / systems / tabs_printers.inc
index 2c264234e377fc88542a3e3c6caf0b64a56ab9cb..92963d6b01f430715fe9a63851ef06ea13e9fef6 100644 (file)
@@ -5,22 +5,26 @@ class printtabs extends tabs
 
   function printtabs($config, $data, $dn,$category)
   {
+
     /* Save dn */
     $this->dn= $dn;
     $this->config= $config;
 
+    $baseobject= NULL;
+
     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']]->parent= &$this;
-        $this->by_object[$tab['CLASS']]->set_acl_category($category);
-      }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']]->parent= &$this;
-        $this->by_object[$tab['CLASS']]->set_acl_category($category);
+      $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'];
@@ -37,7 +41,7 @@ class printtabs extends tabs
   }
 
 
-  function save()
+  function save($ignore_account= FALSE)
   {
     /* Check for new 'dn', in order to propagate the
        'dn' to all plugins */