Code

queue parameter modifcated
[gosa.git] / plugins / admin / ogroups / tabs_ogroups.inc
index a3007bda90ccb241378a9016da197c2b4a6d179a..02593ea36d102044c33194248095011d75e9da6f 100644 (file)
@@ -23,12 +23,31 @@ class ogrouptabs extends tabs
           break;
 
         case "U":
+          /* Append a PhoneQueue, if objectClass = goFonAccount */
+          $use = false;
+          foreach($this->by_object['ogroup']->memberList as $dn => $val){
+            if(in_array("goFonAccount",$val['objectClass'])){
+              $use = true; 
+            }
+          }
+    
+          /* We found goFonAccount in users objectClasses*/
+          if($use){
+            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']->parent= &$this;
+
+          } 
           /* Add a user tab used for mail distribution lists */
-          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;
+          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;
+            }
           }
 
           break;