Code

* Added basic support for tagging new objects
[gosa.git] / plugins / admin / fai / tabsScript.inc
1 <?php
3 class tabsScript extends tabs
4 {
5   var $base= "";
7   function tabsScript($config, $data, $dn)
8   {
9         tabs::tabs($config, $data, $dn);
10   }
12   function check()
13   {
14         return (tabs::check(TRUE));
15   }
16   
18   function save()
19   {
20         $baseobject= $this->by_object['faiScript'];
22         $new_dn= 'cn='.$baseobject->cn.",ou=scripts,ou=fai,ou=configs,ou=systems,".$_SESSION['CurrentMainBase'];
24         if($_SESSION['faifilter']['branch']!="main"){
25                 $new_dn ='cn='.$baseobject->cn.",ou=scripts,".$_SESSION['faifilter']['branch'];
26         }
27         
28         if ($this->dn != $new_dn && $this->dn != "new"){
29                 
30                 /* if( new_dn is subtree of this->dn ) */
31                 $cnt1 = count(split(",",$this->dn));
32                 $cnt2 = count(split(",",$new_dn));
33                 if((strstr($new_dn,$this->dn))&&($cnt1<$cnt2)){
34                         print_red(_("Try to move tree failed. Destination tree is subtree of source tree."));
35                 }else{
36                         $baseobject->recursive_move($this->dn, $new_dn);
37                 }
38         }
39         $this->dn= $new_dn;
41         tabs::save(TRUE);
43         /* Fix tagging if needed */
44         $baseobject->handle_object_tagging();
45   }
47 }
49 ?>