Code

Invalid repository settings fixed.
[gosa.git] / plugins / admin / ogroups / tabs_ogroups.inc
index 348e316d73ffa2fe07a580434faf4523d336818b..28718e287df44087423be6231d7c7df9ac75e91c 100644 (file)
@@ -22,18 +22,42 @@ class ogrouptabs extends tabs
 
           break;
 
-        case "U":
+          case "U":
+            /* Append a PhoneQueue, if objectClass = goFonAccount */
+            $use = false;
+          foreach($this->by_object['ogroup']->memberList as $dn => $val){
+            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");
+            $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 */
-          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;
       }
     }
   }
 
+
   function check()
   {
     return (tabs::check(TRUE));
@@ -88,7 +112,7 @@ class ogrouptabs extends tabs
       $this->dn= 'cn='.$baseobject->cn.','.get_groups_ou().$baseobject->base;
     }
 
-    tabs::save(TRUE);
+    tabs::save();
   }
 
 }