X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_tabs.inc;h=c7666fddff52ffb86e498d1299977eb3bb6f2fb1;hb=9b22ccef7a7dc885c6058817fe91cc9161a8161f;hp=d11d24b42772182cda822e5dec514d851b98f4d5;hpb=d95d2162852d5d798e4eeeba919d072294b089ee;p=gosa.git diff --git a/gosa-core/include/class_tabs.inc b/gosa-core/include/class_tabs.inc index d11d24b42..c7666fddf 100644 --- a/gosa-core/include/class_tabs.inc +++ b/gosa-core/include/class_tabs.inc @@ -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= "") @@ -44,7 +44,7 @@ class tabs $this->config= &$config; $baseobject= NULL; - + $this->acl_category = $acl_category; foreach ($data as &$tab){ if (!plugin_available($tab['CLASS'])){ @@ -62,7 +62,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 +71,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,12 +305,17 @@ 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);