X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fsystems%2Ftabs_workstation.inc;h=8716247cde1e19950bd508f84a8c1801a5e176de;hb=c30fdf675865a86365275ed6fb9f8a0cc06e41af;hp=bb5b892a8bb03beccefc975df930e8e561b15b7c;hpb=1db46036e135f1d606e0fcc9e70ed5125f3dbdd1;p=gosa.git diff --git a/plugins/admin/systems/tabs_workstation.inc b/plugins/admin/systems/tabs_workstation.inc index bb5b892a8..8716247cd 100644 --- a/plugins/admin/systems/tabs_workstation.inc +++ b/plugins/admin/systems/tabs_workstation.inc @@ -5,13 +5,37 @@ class worktabs extends tabs function worktabs($config, $data, $dn) { - tabs::tabs($config, $data, $dn); + /* Save dn */ + $this->dn= $dn; + $this->config= $config; + + foreach ($data as $tab){ + if($tab['CLASS'] == "printgeneric"){ + $this->by_name[$tab['CLASS']]= $tab['NAME']; + $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn,$this); + $this->by_object[$tab['CLASS']]->parent= &$this; + }else{ + $this->by_name[$tab['CLASS']]= $tab['NAME']; + $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn); + $this->by_object[$tab['CLASS']]->parent= &$this; + } + /* Initialize current */ + if ($this->current == ""){ + $this->current= $tab['CLASS']; + } + } } function save_object($save_current= FALSE) { -echo "Take care of the l attribute. It needs to be synced in case of workstations."; tabs::save_object($save_current); + + /* Assign current cn to all other plugins */ + $baseobject= $this->by_object['workgeneric']; + foreach ($this->by_object as $key => $obj){ + $this->by_object[$key]->dn= $this->dn; + $this->by_object[$key]->cn= $baseobject->cn; + } } @@ -21,6 +45,7 @@ echo "Take care of the l attribute. It needs to be synced in case of workstation 'dn' to all plugins */ $baseobject= $this->by_object['workgeneric']; $this->dn= "cn=".$baseobject->cn.",ou=workstations,ou=systems,".$baseobject->base; + $baseobject->dn= $this->dn; foreach ($this->by_object as $key => $obj){ $this->by_object[$key]->dn= $this->dn; @@ -28,10 +53,15 @@ echo "Take care of the l attribute. It needs to be synced in case of workstation } tabs::save(TRUE); - if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){ - $this->by_object['printgeneric']->remove_from_parent(); + + if(isset($this->by_object['printgeneric'])){ + if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){ + $this->by_object['printgeneric']->remove_from_parent(); + } } + /* Fix tagging if needed */ + $baseobject->handle_object_tagging(); } }