Code

Updated teminal template
[gosa.git] / gosa-plugins / goto / admin / systems / goto / 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     if(isset($this->by_object['termstartup'])){
43       $this->by_object['termstartup']->gotoTerminalPath= $this->by_object['termgeneric']->gotoTerminalPath;
44     }
45     
46     $base_obj = $this->by_object['termgeneric'];
47     foreach($this->by_object as $name => $plug){
48       $this->by_object[$name]->cn = $base_obj->cn;
49     }
50   }
53   function save($ignore_account= FALSE)
54   {
55     /* Check for new 'dn', in order to propagate the
56        'dn' to all plugins */
57     $baseobject= $this->by_object['termgeneric'];
58     $this->dn= "cn=".$baseobject->cn.",".get_ou('terminalou').$baseobject->base;
59     $baseobject->dn= $this->dn;
61     foreach ($this->by_object as $key => $obj){
62       $this->by_object[$key]->dn= $this->dn;
63       $this->by_object[$key]->cn= $baseobject->cn;
64     }
66     tabs::save(TRUE);
67     if(isset($this->by_object['printgeneric'])){
68       if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){
69         $this->by_object['printgeneric']->remove_from_parent();
70       }
71     }
72   }
74 }
76 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
77 ?>