Code

65fc151ef45dc2327fcfbb1d29213ecbd7030522
[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= "";
26   var $moved = FALSE;
28   function deptabs($config, $data, $dn,$category)
29   {
30     tabs::tabs($config, $data, $dn,$category);
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   /*! \brief Check if the department must must be moved 
44       return Boolean TRUE if we have to move the dep, else FALSE
45    */
46   function am_i_moved()
47   {
48     return(FALSE);
49     if($this->moved) return(FALSE);
50     $baseobject= &$this->by_object['department'];
51     $ou       = preg_replace('/,/', '\,', $baseobject->ou);  
52     $new_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->base);
53     $old_ou   = preg_replace('/,/', '\,', $baseobject->orig_ou);
54     $old_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->orig_base);
55     if ($this->dn != $new_dn && $this->dn != "new"){
56       return(TRUE); 
57     }
58     return(FALSE);
59   }
61  
62   /*! \brief  Checks if the department was moved successfully 
63       @return Boolean TRUE if the dep was already moved.
64    */ 
65   function move_done()
66   {
67     return($this->moved);
68   }
70   
71   /*! \brief  Initiate recursive move 
72    */
73   function move_me()
74   {
75     if(!$this->am_i_moved()) return;
76     $baseobject= &$this->by_object['department'];
77     $ou       = preg_replace('/,/', '\,', $baseobject->ou);  
78     $new_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->base);
79     $old_ou   = preg_replace('/,/', '\,', $baseobject->orig_ou);
80     $old_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->orig_base);
81     if ($this->dn != $new_dn && $this->dn != "new"){
82       $baseobject->recursive_move($this->dn, $new_dn);
83       $this->moved= TRUE;
84     }
85   }
88   function save($ignore_account= FALSE)
89   {
90     $baseobject= &$this->by_object['department'];
91     $ou       = preg_replace('/,/', '\,', $baseobject->ou);  
92     $new_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->base);
94     /* Move group? */
95     if ($this->dn != $new_dn && $this->dn != "new"){
96         $baseobject->move($this->dn,$new_dn);
97     } 
99     $this->dn= $new_dn;
100     $baseobject->dn= $this->dn;
101     if (!$ignore_account){
102       tabs::save(TRUE);
103     }
104   }
108 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
109 ?>