Code

Updated listing of FAI classes
[gosa.git] / gosa-plugins / goto / admin / systems / goto / tabs_printers.inc
index 0d0516ab39d43ece2e330a13c980a51e40c2a4b0..6a7e0e02d4323b767aa355e05fa1793f68e543c2 100644 (file)
@@ -3,13 +3,18 @@
 class printtabs extends tabs
 {
 
-  function printtabs($config, $data, $dn,$category)
+  function printtabs($config, $data, $dn,$category,$hide_refs = FALSE, $hide_acls = FALSE)
   {
 
     /* Save dn */
     $this->dn= $dn;
     $this->config= $config;
 
+    $this->hide_acls = $hide_acls;
+    $this->hide_refs = $hide_refs;
+
+    $this->acl_category = $category;
+
     $baseobject= NULL;
 
     foreach ($data as $tab){
@@ -26,6 +31,7 @@ class printtabs extends tabs
 
       $this->by_object[$tab['CLASS']]->parent= &$this;
       $this->by_object[$tab['CLASS']]->set_acl_category($category);
+      $this->read_only |= $this->by_object[$tab['CLASS']]->read_only;      
 
       /* Initialize current */
       if ($this->current == ""){
@@ -75,7 +81,7 @@ class printtabs extends tabs
     /* Check for new 'dn', in order to propagate the
        'dn' to all plugins */
     $baseobject= $this->by_object['printgeneric'];
-    $this->dn= "cn=$baseobject->cn,".get_ou('printerou').$baseobject->base;
+    $this->dn= "cn=$baseobject->cn,".get_ou('printerRDN').$baseobject->base;
     $baseobject->dn= $this->dn;
 
     foreach ($this->by_object as $key => $obj){