Code

Move object first.
[gosa.git] / plugins / admin / systems / tabs_terminal.inc
1 <?php
3 class termtabs extends tabs
4 {
6   function termtabs($config, $data, $dn, $category)
7   {
8     /* Save dn */
9     $this->dn= $dn;
10     $this->config= $config;
12     $baseobject= NULL;
14     foreach ($data as $tab){
15       $this->by_name[$tab['CLASS']]= $tab['NAME'];
17       if ($baseobject == NULL){
18         $baseobject= new $tab['CLASS']($this->config, $this->dn,NULL,$this);
19         $this->by_object[$tab['CLASS']]= $baseobject;
20       } else {
21         $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn, $baseobject,$this);
22       }
24       $this->by_object[$tab['CLASS']]->parent= &$this;
25       $this->by_object[$tab['CLASS']]->set_acl_category($category);
27       /* Initialize current */
28       if ($this->current == ""){
29         $this->current= $tab['CLASS'];
30       }
31     }
33     /* Add references/acls/snapshots */
34     $this->addSpecialTabs();
35   }
37   function save_object($save_current= FALSE)
38   {
39     tabs::save_object($save_current);
41     /* Update reference, transfer variables */
42     $this->by_object['termstartup']->gotoTerminalPath=
43       $this->by_object['termgeneric']->gotoTerminalPath;
44   }
47   function save()
48   {
49     /* Check for new 'dn', in order to propagate the
50        'dn' to all plugins */
51     $baseobject= $this->by_object['termgeneric'];
52     $this->dn= "cn=".$baseobject->cn.",ou=terminals,ou=systems,".$baseobject->base;
53     $baseobject->dn= $this->dn;
55     foreach ($this->by_object as $key => $obj){
56       $this->by_object[$key]->dn= $this->dn;
57       $this->by_object[$key]->cn= $baseobject->cn;
58     }
60     tabs::save(TRUE);
61     if(isset($this->by_object['printgeneric'])){
62       if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){
63         $this->by_object['printgeneric']->remove_from_parent();
64       }
65     }
67     /* Fix tagging if needed */
68     $baseobject->handle_object_tagging();
69   }
71 }
73 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
74 ?>