Code

Updated system tabs
[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     foreach ($data as $tab){
13       if($tab['CLASS'] == "printgeneric"){
14         $this->by_name[$tab['CLASS']]= $tab['NAME'];
15         $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn, $category);
16         $this->by_object[$tab['CLASS']]->parent= &$this;
17       }else{
18         $this->by_name[$tab['CLASS']]= $tab['NAME'];
19         $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn, $category);
20         $this->by_object[$tab['CLASS']]->parent= &$this;
21       }
22       /* Initialize current */
23       if ($this->current == ""){
24         $this->current= $tab['CLASS'];
25       }
26     }
28     /* Add references/acls/snapshots */
29     $this->addSpecialTabs();
30   }
32   function save_object($save_current= FALSE)
33   {
34     tabs::save_object($save_current);
36     /* Update reference, transfer variables */
37     $this->by_object['termstartup']->gotoTerminalPath=
38       $this->by_object['termgeneric']->gotoTerminalPath;
39   }
42   function save()
43   {
44     /* Check for new 'dn', in order to propagate the
45        'dn' to all plugins */
46     $baseobject= $this->by_object['termgeneric'];
47     $this->dn= "cn=".$baseobject->cn.",ou=terminals,ou=systems,".$baseobject->base;
48     $baseobject->dn= $this->dn;
50     foreach ($this->by_object as $key => $obj){
51       $this->by_object[$key]->dn= $this->dn;
52       $this->by_object[$key]->cn= $baseobject->cn;
53     }
55     tabs::save(TRUE);
56     if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){
57       $this->by_object['printgeneric']->remove_from_parent();
58     }
60     /* Fix tagging if needed */
61     $baseobject->handle_object_tagging();
62   }
64 }
66 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
67 ?>