Code

Simplified the way we handle tags. This *may* break tagging. Needs testing.
[gosa.git] / plugins / admin / ogroups / tabs_ogroups.inc
index c4fdeed3b0cefabb86e316f0a8e4e52f32d56da3..496e84c44dd295756ea23b6d59d77fa0823f0500 100644 (file)
@@ -11,9 +11,10 @@ class ogrouptabs extends tabs
      * but there is no user left with goPhoneAccount ... remove it.
      */
     $usePhoneTab = false;
+    $o_cache = $this->by_object['ogroup']->objcache;
     foreach($this->by_object['ogroup']->memberList as $dn => $val){
-      if(isset($val['objectClass'])){
-        if(in_array("goFonAccount",$val['objectClass'])){
+      if(isset($o_cache[$dn]['objectClass'])){
+        if(in_array("goFonAccount",$o_cache[$dn]['objectClass'])){
           $usePhoneTab = true;
         }
       }
@@ -38,22 +39,28 @@ class ogrouptabs extends tabs
     }
     
     /* Remove ws tabs, if theres no ws left in the object list */
-    if((!preg_match("/W/",$objects))&&(isset($this->by_object['workstartup']))){
+    if((!preg_match("/W/",$objects))&&(isset($this->by_object['workservice']))){
       $this->by_object['workservice']->remove_from_parent();
       unset($this->by_object['workservice']);
       unset($this->by_name['workservice']);
+    }
+    if((!preg_match("/S/",$objects) && !preg_match("/W/",$objects))&&(isset($this->by_object['workstartup']))){
       $this->by_object['workstartup']->remove_from_parent();
       unset($this->by_object['workstartup']);
       unset($this->by_name['workstartup']);
+      $this->by_object['faiSummary']->remove_from_parent();
+      unset($this->by_object['faiSummary']);
+      unset($this->by_name['faiSummary']);
     }
   
     /* Create goPhoneAccount if theres an user with goPhoneAccount
      * but only if there is currently no queue enabled.
      */
+    $o_cache = $this->by_object['ogroup']->objcache;
     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'])){
+        if(isset($o_cache[$dn]['objectClass'])){
+          if(in_array("goFonAccount",$o_cache[$dn]['objectClass'])){
             require_once("class_phonequeue.inc");
             $this->by_name['phonequeue']= _("Phone queue");
             $this->by_object['phonequeue']= new phonequeue($this->config, $this->dn);
@@ -71,6 +78,7 @@ class ogrouptabs extends tabs
           require_once("class_mailogroup.inc");
           $this->by_name['mailogroup']= _("Mail");
           $this->by_object['mailogroup']= new mailogroup($this->config, $this->dn);
+          $this->by_object['mailogroup']->acl = "#all#";
           $this->by_object['mailogroup']->parent= &$this;
         }
       }
@@ -80,32 +88,74 @@ class ogrouptabs extends tabs
     if(((preg_match("/T/",$objects)) || (preg_match("/W/",$objects)))&&(!isset($this->by_object['termgroup']))){
       require_once("class_termgroup.inc");
       if(!isset($this->by_object['termgroup'])){
-        $this->by_name['termgroup']= _("Common settings");
+        $this->by_name['termgroup']= _("System");
         $this->by_object['termgroup']= new termgroup($this->config, $this->dn);
+        $this->by_object['termgroup']->acl = "#all#";
+        $this->by_object['termgroup']->inheritTimeServer = false;
         $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;
-      }
+    if((preg_match("/W/",$objects))&&(!isset($this->by_object['workservice']))){
+      $this->by_name['workservice']= _("Devices");
+      $this->by_object['workservice']= new workservice($this->config, $this->dn);
+      $this->by_object['workservice']->inheritTimeServer = false;
+      $this->by_object['workservice']->parent= &$this;
+      $this->by_object['workservice']->acl = "#all#";
+    }
+    if((preg_match("/S/",$objects) || preg_match("/W/",$objects))&&(!isset($this->by_object['workstartup']))){
+      $this->by_name['workstartup']= _("Startup");
+      $this->by_object['workstartup']= new workstartup($this->config, $this->dn);
+      $this->by_object['workstartup']->parent= &$this;
+      $this->by_object['workstartup']->acl = "#all#";
+      $this->by_name['faiSummary']= _("Summary");
+      $this->by_object['faiSummary']= new faiSummaryTab($this->config, $this->dn);
+      $this->by_object['faiSummary']->parent= &$this;
+    }
+
+    /* Add application tab if user or group is member in this object group*/ 
+    if((preg_match("/G/",$objects) || preg_match("/U/",$objects)) && !isset($this->by_name['appgroup'])){
+      $this->by_name['appgroup']= _("Application");
+      $this->by_object['appgroup']= new appgroup($this->config, $this->dn);
+      $this->by_object['appgroup']->acl = "#all#";
+      $this->by_object['appgroup']->parent= &$this;
+    }
+
+    /* Remove application tab if not required any longer */
+    if(!preg_match("/G/",$objects) && !preg_match("/U/",$objects) && isset($this->by_name['appgroup'])){
+      $this->by_object['appgroup']->remove_from_parent();
+      unset($this->by_name['appgroup']);
+      unset($this->by_object['appgroup']);
+    }  
+    /* Add environment tab if user or group is member in this object group*/ 
+    if((preg_match("/G/",$objects) || preg_match("/U/",$objects)) && !isset($this->by_name['environment'])){
+      $this->by_name['environment']= _("Environment");
+      $this->by_object['environment']= new environment($this->config, $this->dn);
+      $this->by_object['environment']->acl = "#all#";
+      $this->by_object['environment']->parent= &$this;
+    }
+
+    /* Remove environment tab if not required any longer */
+    if(!preg_match("/G/",$objects) && !preg_match("/U/",$objects) && isset($this->by_name['environment'])){
+      $this->by_object['environment']->remove_from_parent();
+      unset($this->by_name['environment']);
+      unset($this->by_object['environment']);
+    }  
+
+    /* Move reference tab to last position*/
+    if(isset($this->by_name['reference'])){
+      $tmp = $this->by_name['reference'];
+      unset($this->by_name['reference']);
+      $this->by_name['reference'] = $tmp;
     }
   }
 
   function execute(){
     $str = "";
-       /* Call parent execute */
-       plugin::execute();
-
     $this->by_object['ogroup']->AddDelMembership();
     $this->reload($this->by_object['ogroup']->gosaGroupObjects);
     $str .= tabs::execute();
@@ -136,9 +186,10 @@ class ogrouptabs extends tabs
           case "U":
             /* Append a PhoneQueue, if objectClass = goFonAccount */
             $use = false;
+          $o_cache = $this->by_object['ogroup']->objcache;
           foreach($this->by_object['ogroup']->memberList as $dn => $val){
-            if(isset($val['objectClass'])){
-              if(in_array("goFonAccount",$val['objectClass'])){
+            if(isset($o_cache[$dn]['objectClass'])){
+              if(in_array("goFonAccount",$o_cache[$dn]['objectClass'])){
                 $use = true; 
               }
             }
@@ -166,6 +217,7 @@ class ogrouptabs extends tabs
           break;
       }
     }
+    $this->reload($this->by_object['ogroup']->gosaGroupObjects);
   }
 
 
@@ -185,10 +237,11 @@ class ogrouptabs extends tabs
 
       /* Don't touch base object */
       if ($name != 'ogroup'){
-        $obj->parent= &$this;
-        $obj->uid= $baseobject->uid;
-        $obj->sn= $baseobject->uid;
-        $obj->givenName= $baseobject->uid;
+        $obj->parent    = &$this;
+        $obj->uid       = $baseobject->uid;
+        $obj->cn        = $baseobject->cn;
+        $obj->sn        = $baseobject->uid;
+        $obj->givenName = $baseobject->uid;
         $this->by_object[$name]= $obj;
       }
 
@@ -220,13 +273,20 @@ class ogrouptabs extends tabs
     }
 
     if ($this->dn == "new"){
-      $this->dn= 'cn='.$baseobject->cn.','.get_groups_ou().$baseobject->base;
+      $this->dn= $new_dn;
     }
 
     tabs::save();
+  }
 
-    /* Fix tagging if needed */
-    $baseobject->handle_object_tagging();
+  function saveCopyDialog()
+  {
+    tabs::saveCopyDialog();
+    $baseobject= $this->by_object['ogroup'];
+    $cn = $baseobject->cn;
+    foreach($this->by_object as  $name => $obj){
+      $this->by_object[$name]->cn = $cn;
+    }
   }
 
 }