Code

Updated ACL listing
[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);
31     $this->base= $this->by_object['department']->base;
33     /* Add references/acls/snapshots */
34     $this->addSpecialTabs();
35     $this->by_object['acl']->skipTagging= TRUE;;
36   }
38   function check($ignore_account= FALSE)
39   {
40     return (tabs::check(TRUE));
41   }
44   /*! \brief Check if the department must must be moved 
45       return Boolean TRUE if we have to move the dep, else FALSE
46    */
47   function am_i_moved()
48   {
49     return(FALSE);
50     if($this->moved) return(FALSE);
51     $baseobject= &$this->by_object['department'];
52     $ou       = preg_replace('/,/', '\,', $baseobject->ou);  
53     $new_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->base);
54     $old_ou   = preg_replace('/,/', '\,', $baseobject->orig_ou);
55     $old_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->orig_base);
56     if ($this->dn != $new_dn && $this->dn != "new"){
57       return(TRUE); 
58     }
59     return(FALSE);
60   }
62  
63   /*! \brief  Checks if the department was moved successfully 
64       @return Boolean TRUE if the dep was already moved.
65    */ 
66   function move_done()
67   {
68     return($this->moved);
69   }
71   
72   /*! \brief  Initiate recursive move 
73    */
74   function move_me()
75   {
76     if(!$this->am_i_moved()) return;
77     $baseobject= &$this->by_object['department'];
78     $ou       = preg_replace('/,/', '\,', $baseobject->ou);  
79     $new_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->base);
80     $old_ou   = preg_replace('/,/', '\,', $baseobject->orig_ou);
81     $old_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->orig_base);
82     if ($this->dn != $new_dn && $this->dn != "new"){
83       $baseobject->recursive_move($this->dn, $new_dn);
84       $this->moved= TRUE;
85     }
86   }
89   function save($ignore_account= FALSE)
90   {
91     $baseobject= &$this->by_object['department'];
92     $ou       = preg_replace('/,/', '\,', $baseobject->ou);  
93     $new_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->base);
95     /* Move group? */
96     if ($this->dn != $new_dn && $this->dn != "new"){
97         $baseobject->move($this->dn,$new_dn);
98     } 
100     $this->dn= $new_dn;
101     $baseobject->dn= $this->dn;
102     if (!$ignore_account){
103       tabs::save(TRUE);
104     }
105   }
109 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
110 ?>