Code

p
[gosa.git] / gosa-core / plugins / admin / departments / tabs_department.inc
1 <?php
2 /*
3  * This code is part of GOsa (http://www.gosa-project.org)
4  * Copyright (C) 2003-2008 GONICUS GmbH
5  *
6  * ID: $$Id$$
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
23 class deptabs extends tabs
24 {
25   var $base= "";
27   function deptabs($config, $data, $dn,$category)
28   {
29     tabs::tabs($config, $data, $dn,$category);
30     $this->base= $this->by_object['department']->base;
32     /* Add references/acls/snapshots */
33     $this->addSpecialTabs();
34     $this->by_object['acl']->skipTagging= TRUE;;
35   }
37   function check($ignore_account= FALSE)
38   {
39     return (tabs::check(TRUE));
40   }
43   function save($ignore_account= FALSE)
44   {
45     $baseobject= &$this->by_object['department'];
46     $ou= preg_replace('/,/', '\,', $baseobject->ou);
47     $new_dn= @LDAP::convert('ou='.$ou.','.$baseobject->base);
48     
49     if($ignore_account){
50       if ($this->dn != $new_dn && $this->dn != "new"){
51         /* if( new_dn is subtree of this->dn ) */
52         $cnt1 = count(split(",",$this->dn));
53         $cnt2 = count(split(",",$new_dn));
54         if((strstr($new_dn,$this->dn))&&($cnt1<$cnt2)){
55           msg_dialog::display(_("LDAP error"), _("Moving LDAP tree failed: destination tree is a subtree of the source!"), ERROR_DIALOG);
56         }else{
57           /* Prepare to be moved */
58           $baseobject->recursive_move($this->dn, $new_dn);                      
59           return;
60         }
61       }
62     }
63     $this->dn= $new_dn;
64     $baseobject->dn= $this->dn;
65     if (!$ignore_account){
66       tabs::save(TRUE);
67     }
68   }
71 }
72 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
73 ?>