Code

Fixed wrong existance check
[gosa.git] / gosa-plugins / systems / admin / systems / tabs_server.inc
index 0df20e09ff03da36055aadbcf1f16d2521ea90a9..af7da365ff90f3cc7b684659087bfcc8e8b65aa7 100644 (file)
 
 class servtabs extends tabs
 {
+  public $was_activated = FALSE;
 
-  function servtabs($config, $data, $dn,$category)
+  function servtabs($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;
+
     $baseobject= NULL;
 
     foreach ($data as $tab){
@@ -47,6 +51,7 @@ class servtabs 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 == ""){
@@ -95,7 +100,7 @@ class servtabs extends tabs
     /* Check for new 'dn', in order to propagate the
        'dn' to all plugins */
     $baseobject= $this->by_object['servgeneric'];
-    $this->dn= "cn=$baseobject->cn,".get_ou('serverou').$baseobject->base;
+    $this->dn= "cn=$baseobject->cn,".get_ou('serverRDN').$baseobject->base;
 
     /* cn is not case sensitive for ldap, but for php it is!! */
     if($baseobject->orig_dn != "new"){