Code

dcb1fef10b1c98730c351b5c5cd4f4481841df55
[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;
27   var $base_name = "department";
29   function deptabs($config, $data, $dn,$category,$hide_refs = FALSE, $hide_acls = FALSE)
30   {
31     tabs::tabs($config, $data, $dn,$category,$hide_refs, $hide_acls);
33     /* Detect the base class  (The classs which extends from department)
34      */
35     foreach($this->by_object as $name => $object){
36       if($object instanceOf department){
37         $this->base_name = get_class($object);
38         break;
39       }
40     }
43     /* Add references/acls/snapshots */
44     $this->addSpecialTabs();
45     $this->by_object['acl']->skipTagging= TRUE;;
46   }
48   function check($ignore_account= FALSE)
49   {
50     return (tabs::check(TRUE));
51   }
54   /*! \brief Check if the department must must be moved 
55       return Boolean TRUE if we have to move the dep, else FALSE
56    */
57   function am_i_moved()
58   {
59     return(FALSE);
60     if($this->moved) return(FALSE);
61     $baseobject= &$this->by_object[$this->base_name];
63     $namingAttr       = $baseobject->namingAttr;
64     $orig_namingAttr  = $baseobject->orig_namingAttr;
66     $value       = preg_replace('/,/', '\,', $baseobject->$namingAttr);  
67     $orig_value  = preg_replace('/,/', '\,', $baseobject->$orig_namingAttr);  
69     $new_dn   = @LDAP::convert($namingAttr.'='.$value.','.$baseobject->base);
70     $old_dn   = @LDAP::convert($namingAttr.'='.$orig_value.','.$baseobject->orig_base);
72     if ($this->dn != $new_dn && $this->dn != "new"){
73       return(TRUE); 
74     }
75     return(FALSE);
76   }
78  
79   /*! \brief  Checks if the department was moved successfully 
80       @return Boolean TRUE if the dep was already moved.
81    */ 
82   function move_done()
83   {
84     return($this->moved);
85   }
87   
88   /*! \brief  Initiate recursive move 
89    */
90   function move_me()
91   {
92     if(!$this->am_i_moved()) return;
93     $baseobject= &$this->by_object[$this->base_name];
94     $ou       = preg_replace('/,/', '\,', $baseobject->ou);  
95     $new_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->base);
96     $old_ou   = preg_replace('/,/', '\,', $baseobject->orig_ou);
97     $old_dn   = @LDAP::convert('ou='.$ou.','.$baseobject->orig_base);
98     if ($this->dn != $new_dn && $this->dn != "new"){
99       $baseobject->recursive_move($this->dn, $new_dn);
100       $this->moved= TRUE;
101     }
102   }
105   function save($ignore_account= FALSE)
106   {
107     $baseobject= &$this->by_object[$this->base_name];
109     $namingAttr       = $baseobject->namingAttr;
111     $nAV      = preg_replace('/,/', '\,', $baseobject->$namingAttr); 
112     $new_dn   = @LDAP::convert($namingAttr.'='.$nAV.','.$baseobject->base);
114     /* Move group? */
115     if ($this->dn != $new_dn && $this->dn != "new"){
116       $baseobject->move($this->dn,$new_dn);
117     } 
119     /* Update department cache. 
120      */
121     if($this->dn != $new_dn){
122       global $config;
123       $config->get_departments();
124     }
127     $this->dn= $new_dn;
128     $baseobject->dn= $this->dn;
129     if (!$ignore_account){
130       tabs::save(TRUE);
131     }
132   }
136 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
137 ?>