Code

Updated icons
[gosa.git] / gosa-plugins / systems / admin / systems / tabs_server.inc
index d19ab53d71c3c36cf5fa285a457c123290c7ae4b..bf1dd4134363b55befb81a31343a0f2f466952d2 100644 (file)
@@ -1,4 +1,24 @@
 <?php
+/*
+ * This code is part of GOsa (http://www.gosa-project.org)
+ * Copyright (C) 2003-2008 GONICUS GmbH
+ *
+ * ID: $$Id$$
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
 
 class servtabs extends tabs
 {
@@ -12,8 +32,12 @@ class servtabs extends tabs
     $baseobject= NULL;
 
     foreach ($data as $tab){
-      $this->by_name[$tab['CLASS']]= $tab['NAME'];
+  
+      if(!class_available($tab['CLASS'])){
+        continue;
+      }
 
+      $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;
@@ -34,11 +58,34 @@ class servtabs 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);
 
-    $base_obj = $this->by_object['servgeneric'];
+    $baseobject = $this->by_object['servgeneric'];
     $baseobject->netConfigDNS->cn= $baseobject->cn;
   }
 
@@ -49,6 +96,20 @@ class servtabs extends tabs
        'dn' to all plugins */
     $baseobject= $this->by_object['servgeneric'];
     $this->dn= "cn=$baseobject->cn,".get_ou('serverou').$baseobject->base;
+
+    /* cn is not case sensitive for ldap, but for php it is!! */
+    if($baseobject->orig_dn != "new"){
+      if($this->config->get_cfg_value("dnmode") == "cn"){
+        if (strtolower($baseobject->orig_dn) != (strtolower($this->dn))){
+          $baseobject->recursive_move($baseobject->orig_dn, $this->dn);
+        }
+      }else{
+        if ($baseobject->orig_dn != $this->dn){
+          $baseobject->recursive_move($baseobject->orig_dn, $this->dn);
+        }
+      }
+    }
+
     $baseobject->dn= $this->dn;
 
     foreach ($this->by_object as $key => $obj){