Code

Column name changed.
[gosa.git] / gosa-plugins / goto / admin / systems / goto / tabs_printers.inc
index a6985094e90562ab3f9d6aea05fc698954326a51..a7d777d5ee03c8f7b0babb529e5c2a2fe18f3625 100644 (file)
@@ -13,6 +13,8 @@ class printtabs extends tabs
     $baseobject= NULL;
 
     foreach ($data as $tab){
+      if(!class_available($tab['CLASS'])) continue;
+
       $this->by_name[$tab['CLASS']]= $tab['NAME'];
 
       if ($baseobject === NULL){
@@ -35,6 +37,29 @@ class printtabs extends tabs
     $this->addSpecialTabs();
   }
 
+
+  /*! \brief Reinitializes the tab classes with fresh ldap values.
+    This maybe usefull if for example the apply button was pressed.
+   */
+  function re_init()
+  {
+    $baseobject= NULL;
+    foreach($this->by_object as $name => $object){
+      $class = get_class($object);
+      if(in_array($class,array("reference","acl"))) continue;
+      if ($baseobject === NULL){
+        $baseobject= new $class($this->config, $this->dn,NULL,$this);
+        $baseobject->enable_CSN_check();
+        $this->by_object[$name]= $baseobject;
+      } else {
+        $this->by_object[$name]= new $class($this->config, $this->dn, $baseobject,$this);
+      }
+      $this->by_object[$name]->parent= &$this;
+      $this->by_object[$name]->set_acl_category($this->acl_category);
+    }
+  }
+
+
   function save_object($save_current= FALSE)
   {
     tabs::save_object($save_current);
@@ -50,7 +75,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){