Code

Prepared for multiple asterisk servers
[gosa.git] / plugins / admin / fai / tabsPartition.inc
index d61396d6769029a488fd82b8aff9a593fad71511..50b6394d719f1e9a4ecd8c2c293b01a7553e6e14 100644 (file)
@@ -4,9 +4,12 @@ class tabsPartition extends tabs
 {
   var $base= "";
 
-  function tabsPartition($config, $data, $dn)
+  function tabsPartition($config, $data, $dn,$category)
   {
-       tabs::tabs($config, $data, $dn);
+       tabs::tabs($config, $data, $dn,$category);
+
+       /* Add references/acls/snapshots */
+       $this->addSpecialTabs();
   }
 
   function check()
@@ -19,10 +22,11 @@ class tabsPartition extends tabs
   {
        $baseobject= $this->by_object['faiPartitionTable'];
 
-       // cn=FAIBASE,ou=disk,ou=fai,ou=configs,ou=systems,dc=gonicus,dc=de
-       $new_dn= 'cn='.$baseobject->cn.",ou=disk,ou=fai,ou=configs,ou=systems,".$_SESSION['config']->current['BASE'];
+       $new_dn= 'cn='.$baseobject->cn.",ou=disk,ou=fai,ou=configs,ou=systems,".$_SESSION['CurrentMainBase'];
        
-       // Old .. $new_dn= 'ou='.$baseobject->ou.','.$baseobject->base;
+       if($_SESSION['faifilter']['branch']!="main"){
+               $new_dn ='cn='.$baseobject->cn.",ou=disk,".$_SESSION['faifilter']['branch'];
+       }
 
        if ($this->dn != $new_dn && $this->dn != "new"){
                
@@ -32,7 +36,7 @@ class tabsPartition extends tabs
                if((strstr($new_dn,$this->dn))&&($cnt1<$cnt2)){
                        print_red(_("Try to move tree failed. Destination tree is subtree of source tree."));
                }else{
-                       $baseobject->recursive_move($this->dn, $new_dn);
+//                     $baseobject->recursive_move($this->dn, $new_dn);
                }
        }
        $this->dn= $new_dn;