Code

Updated object movement.
[gosa.git] / plugins / admin / fai / tabsTemplate.inc
index cc49f0ce676cbc8922246cf9a929f2ef54bc429d..ba5e71956b220f909cadb51bdc3a58eae7d8d3d3 100644 (file)
@@ -4,9 +4,12 @@ class tabsTemplate extends tabs
 {
   var $base= "";
 
-  function tabsTemplate($config, $data, $dn)
+  function tabsTemplate($config, $data, $dn,$category)
   {
-       tabs::tabs($config, $data, $dn);
+       tabs::tabs($config, $data, $dn, $category);
+
+       /* Add references/acls/snapshots */
+       $this->addSpecialTabs();
   }
 
   function check()
@@ -18,9 +21,13 @@ class tabsTemplate extends tabs
   function save()
   {
        $baseobject= $this->by_object['faiTemplate'];
-
-       $new_dn= 'cn='.$baseobject->cn.",ou=templates,ou=fai,ou=configs,ou=systems,".$_SESSION['faifilter']['base'];
        
+       $new_dn= 'cn='.$baseobject->cn.",ou=templates,ou=fai,ou=configs,ou=systems,".$_SESSION['CurrentMainBase'];
+
+       if($_SESSION['faifilter']['branch']!="main"){
+               $new_dn ='cn='.$baseobject->cn.",ou=templates,".$_SESSION['faifilter']['branch'];
+       }
+
        if ($this->dn != $new_dn && $this->dn != "new"){
                
                /* if( new_dn is subtree of this->dn ) */
@@ -29,7 +36,7 @@ class tabsTemplate 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;