Code

Added branches container for old stuff
[gosa.git] / gosa-core / include / class_tabs.inc
index 469a2c0bd042ed28242767952d2673c4fd8e299c..a10db017ce7e333a7646fac07ef060e626d5cbb6 100644 (file)
@@ -34,7 +34,7 @@ class tabs
   var $by_name= array();
   var $by_object= array();
   var $SubDialog = false;
-
+  var $acl_category; 
   var $multiple_support_active = FALSE;
 
   function tabs(&$config, $data, $dn, $acl_category= "")
@@ -43,8 +43,15 @@ class tabs
     $this->dn= $dn;
     $this->config= &$config;
 
-    $baseobject= NULL;
+    if(!count($data)) {
+      $data[] = array("CLASS" => 'plugin',"NAME" => 'Error');
+      msg_dialog::display(_("Error"),
+        sprintf(_("No plugin definitions found to initialize '%s', please check your configuration file."),get_class($this)),
+        "ERROR_DIALOG");
+    }
 
+    $baseobject= NULL;
+    $this->acl_category = $acl_category;
     foreach ($data as &$tab){
 
       if (!plugin_available($tab['CLASS'])){
@@ -62,7 +69,7 @@ class tabs
       }
 
       $this->by_object[$tab['CLASS']]->parent= &$this;
-      $this->by_object[$tab['CLASS']]->set_acl_category($acl_category);
+      $this->by_object[$tab['CLASS']]->set_acl_category($this->acl_category);
 
       /* Initialize current */
       if ($this->current == ""){
@@ -71,9 +78,34 @@ class tabs
     }
   }
 
+  /*! \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);
+        $baseobject->enable_CSN_check();
+        $this->by_object[$name]= $baseobject;
+      } else {
+        $this->by_object[$name]= new $class($this->config, $this->dn, $baseobject);
+      }
+      $this->by_object[$name]->parent= &$this;
+      $this->by_object[$name]->set_acl_category($this->acl_category);
+    }
+  }
+
 
   function execute()
   {
+    /* Ensure that the currently selected tab is valid. */
+    if(!isset($this->by_name[$this->current])) $this->current = key($this->by_name);
+
     /* Rotate current to last */
     $this->last= $this->current;
 
@@ -280,24 +312,29 @@ class tabs
 
       $obj->dn= $this->dn;
 
-      if ($obj->is_account || $ignore_account || $obj->ignore_account){
-        if ($obj->save() == 1){
-          return (1);
+      if(!$obj instanceof plugin){
+        trigger_error("Something went wrong while saving ".$obj->dn.". Object class '".get_class($obj)."'.");
+      }else{
+
+        if ($obj->is_account || $ignore_account || $obj->ignore_account){
+          if ($obj->save() == 1){
+            return (1);
+          }
+        } else {
+          $obj->remove_from_parent();
         }
-      } else {
-        $obj->remove_from_parent();
       }
     }
     return (0);
   }
 
-  function adapt_from_template($dn)
+  function adapt_from_template($dn, $skip= array())
   {
     foreach ($this->by_object as $key => &$obj){
       @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__,
           $key, "Adapting");
       $obj->parent= &$this;
-      $obj->adapt_from_template($dn);
+      $obj->adapt_from_template($dn, $skip);
     }
   }