X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fogroups%2Ftabs_ogroups.inc;h=3e4979224223e031491792f994eac0145bb7e897;hb=a04284e85f4373710f6f455fab532c967bf37ded;hp=02593ea36d102044c33194248095011d75e9da6f;hpb=43d6069e35a06cb7db945c18141fe163714c5f2a;p=gosa.git diff --git a/plugins/admin/ogroups/tabs_ogroups.inc b/plugins/admin/ogroups/tabs_ogroups.inc index 02593ea36..3e4979224 100644 --- a/plugins/admin/ogroups/tabs_ogroups.inc +++ b/plugins/admin/ogroups/tabs_ogroups.inc @@ -3,14 +3,125 @@ class ogrouptabs extends tabs { var $base= ""; + + function reload($dd){ + $objects= preg_replace('/[\[\]]/', '', $dd); + + /* If there is a phonequeue, + * but there is no user left with goPhoneAccount ... remove it. + */ + $usePhoneTab = false; + foreach($this->by_object['ogroup']->memberList as $dn => $val){ + if(isset($val['objectClass'])){ + if(in_array("goFonAccount",$val['objectClass'])){ + $usePhoneTab = true; + } + } + } + if(((!$usePhoneTab)&&(isset($this->by_object['phonequeue'])))||((!preg_match("/U/",$objects))&&(isset($this->by_object['phonequeue'])))){ + $this->by_object['phonequeue']->remove_from_parent(); + unset($this->by_object['phonequeue']); + unset($this->by_name['phonequeue']); + } + /* Remove mail group if there is no user anymore */ + if((!preg_match("/U/",$objects))&&(isset($this->by_object['mailogroup']))){ + $this->by_object['mailogroup']->remove_from_parent(); + unset($this->by_object['mailogroup']); + unset($this->by_name['mailogroup']); + } + + /* Remove terminal group, if theres no terminal left in the object list */ + if((!preg_match("/T/",$objects))&&(isset($this->by_object['termgroup']))){ + $this->by_object['termgroup']->remove_from_parent(); + unset($this->by_object['termgroup']); + unset($this->by_name['termgroup']); + } + + /* Remove ws tabs, if theres no ws left in the object list */ + if((!preg_match("/W/",$objects))&&(isset($this->by_object['workstartup']))){ + $this->by_object['workservice']->remove_from_parent(); + unset($this->by_object['workservice']); + unset($this->by_name['workservice']); + $this->by_object['workstartup']->remove_from_parent(); + unset($this->by_object['workstartup']); + unset($this->by_name['workstartup']); + } + + /* Create goPhoneAccount if theres an user with goPhoneAccount + * but only if there is currently no queue enabled. + */ + if(!isset($this->by_object['phonequeue'])){ + foreach($this->by_object['ogroup']->memberList as $dn => $val){ + if(isset($val['objectClass'])){ + if(in_array("goFonAccount",$val['objectClass'])){ + require_once("class_phonequeue.inc"); + $this->by_name['phonequeue']= _("Phone queue"); + $this->by_object['phonequeue']= new phonequeue($this->config, $this->dn); + $this->by_object['phonequeue']->acl = "#all#"; + $this->by_object['phonequeue']->parent= &$this; + } + } + } + } + + /* Add mail group tab , if there is curerntly no mail tab defined */ + if((preg_match("/U/",$objects))&&(!isset($this->by_object['mailogroup']))){ + if(isset($this->config->current['MAILMETHOD'])){ + if (preg_match('/kolab/i', $this->config->current['MAILMETHOD'])){ + require_once("class_mailogroup.inc"); + $this->by_name['mailogroup']= _("Mail"); + $this->by_object['mailogroup']= new mailogroup($this->config, $this->dn); + $this->by_object['mailogroup']->parent= &$this; + } + } + } + + /* Add Terminal tab */ + if((preg_match("/T/",$objects))&&(!isset($this->by_object['termgroup']))){ + require_once("class_termgroup.inc"); + if(!isset($this->by_object['termgroup'])){ + $this->by_name['termgroup']= _("Terminals"); + $this->by_object['termgroup']= new termgroup($this->config, $this->dn); + $this->by_object['termgroup']->parent= &$this; + } + } + + /* Add Workstation tabs */ + if((preg_match("/W/",$objects))&&(!isset($this->by_object['workstartup']))){ + if(!isset($this->by_object['workstartup'])){ + $this->by_name['workstartup']= _("Startup"); + $this->by_object['workstartup']= new workstartup($this->config, $this->dn); + $this->by_object['workstartup']->acl = "#all#"; + $this->by_object['workstartup']->parent= &$this; + $this->by_name['workservice']= _("Devices"); + $this->by_object['workservice']= new workservice($this->config, $this->dn); + $this->by_object['workservice']->acl = "#all#"; + $this->by_object['workservice']->parent= &$this; + } + } + } + + function execute(){ + $str = ""; + /* Call parent execute */ + plugin::execute(); + + $this->by_object['ogroup']->AddDelMembership(); + $this->reload($this->by_object['ogroup']->gosaGroupObjects); + $str .= tabs::execute(); + return ( $str); + } function ogrouptabs($config, $data, $dn) { + tabs::tabs($config, $data, $dn); $this->base= $this->by_object['ogroup']->base; /* Insert extra tabs for several object types - if present */ + $objects= preg_replace('/[\[\]]/', '', $this->by_object['ogroup']->gosaGroupObjects); + for ($n= 0; $nby_object['ogroup']->memberList as $dn => $val){ - if(in_array("goFonAccount",$val['objectClass'])){ - $use = true; + if(isset($val['objectClass'])){ + if(in_array("goFonAccount",$val['objectClass'])){ + $use = true; + } } } - + /* We found goFonAccount in users objectClasses*/ if($use){ require_once("class_phonequeue.inc"); @@ -58,7 +171,7 @@ class ogrouptabs extends tabs function check() { - return (tabs::check(TRUE)); + return (tabs::check(FALSE)); }