Code

Moved folder images
[gosa.git] / gosa-plugins / goto / admin / systems / goto / tabs_workstation.inc
1 <?php
3 class worktabs extends tabs
4 {
6   function worktabs($config, $data, $dn,$category)
7   {
8     
9     /* Save dn */
10     $this->dn= $dn;
11     $this->config= $config;
13     $baseobject= NULL;
15     foreach ($data as $tab){
16       $this->by_name[$tab['CLASS']]= $tab['NAME'];
18       if ($baseobject === NULL){
19         $baseobject= new $tab['CLASS']($this->config, $this->dn,NULL,$this);
20         $this->by_object[$tab['CLASS']]= $baseobject;
21       } else {
22         $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn, $baseobject,$this);
23       }
25       $this->by_object[$tab['CLASS']]->parent= &$this;
26       $this->by_object[$tab['CLASS']]->set_acl_category($category);
28       /* Initialize current */
29       if ($this->current == ""){
30         $this->current= $tab['CLASS'];
31       }
32     }
34     /* Add references/acls/snapshots */
35     $this->addSpecialTabs();
36   }
38   function save_object($save_current= FALSE)
39   {
40     tabs::save_object($save_current);
42     /* Assign current cn */
43     $baseobject= $this->by_object['workgeneric'];
44     $baseobject->netConfigDNS->cn= $baseobject->cn;
45     foreach ($this->by_object as $key => $obj){
46       $this->by_object[$key]->cn= $baseobject->cn;
47     }
48   }
51   function save($ignore_account= FALSE)
52   {
53     /* Check for new 'dn', in order to propagate the
54        'dn' to all plugins */
55     $baseobject= $this->by_object['workgeneric'];
56     $this->dn= "cn=".$baseobject->cn.",".get_ou('workstationou').$baseobject->base;
58     if($this->dn != $baseobject->orig_dn && $baseobject->orig_dn != "new"){
60       /* Udpate acls */
61       $baseobject->update_acls($baseobject->orig_dn,$this->dn);
62       $baseobject->move($baseobject->orig_dn,$this->dn);
63     }
65     $baseobject->dn= $this->dn;
67     foreach ($this->by_object as $key => $obj){
68       $this->by_object[$key]->dn= $this->dn;
69       $this->by_object[$key]->cn= $baseobject->cn;
70     }
72     tabs::save(TRUE);
74     if(isset($this->by_object['printgeneric'])){
75       if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){
76         $this->by_object['printgeneric']->remove_from_parent();
77       }
78     }
79   }
81 }
83 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
84 ?>