Code

Replace {t}Delete{/t} with {msgPool type=delButton}
[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   }
36   function check($ignore_account= FALSE)
37   {
38     return (tabs::check(TRUE));
39   }
42   function save($ignore_account= FALSE)
43   {
44     $baseobject= $this->by_object['department'];
45     $ou= preg_replace('/,/', '\,', $baseobject->ou);
46     $new_dn= @LDAP::convert('ou='.$ou.','.$baseobject->base);
47     
48     if($ignore_account){
49       if ($this->dn != $new_dn && $this->dn != "new"){
50         /* if( new_dn is subtree of this->dn ) */
51         $cnt1 = count(split(",",$this->dn));
52         $cnt2 = count(split(",",$new_dn));
53         if((strstr($new_dn,$this->dn))&&($cnt1<$cnt2)){
54           msg_dialog::display(_("LDAP error"), _("Moving LDAP tree failed: destination tree is a subtree of the source!"), ERROR_DIALOG);
55         }else{
56           /* Prepare to be moved */
57           $baseobject->recursive_move($this->dn, $new_dn);                      
58           $this->by_object['department'] = $baseobject;
59           return;
60         }
61       }
62     }
63     $this->dn= $new_dn;
64     $baseobject->dn= $this->dn;
65     $this->by_object['department']= $baseobject;
66     return(tabs::save(TRUE));
67   }
70 }
71 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
72 ?>