Code

updated templates
[gosa.git] / gosa-plugins / goto / admin / systems / goto / tabs_workstation.inc
index 3d6bac27c5134dcca4e9f1a8308fcac61a13ef84..5086602cf04e0ec21690a6004568f04e3fdb8e8e 100644 (file)
@@ -3,16 +3,23 @@
 class worktabs extends tabs
 {
 
-  function worktabs($config, $data, $dn,$category)
+  public $was_activated = FALSE;
+
+  function worktabs($config, $data, $dn,$category,$hide_refs = FALSE, $hide_acls = FALSE)
   {
     
     /* Save dn */
     $this->dn= $dn;
     $this->config= $config;
 
+    $this->hide_refs = $hide_refs;
+    $this->hide_acls = $hide_acls;
+
     $baseobject= NULL;
 
     foreach ($data as $tab){
+
+      if(!class_available($tab['CLASS'])) continue;
       $this->by_name[$tab['CLASS']]= $tab['NAME'];
 
       if ($baseobject === NULL){
@@ -24,6 +31,7 @@ class worktabs extends tabs
 
       $this->by_object[$tab['CLASS']]->parent= &$this;
       $this->by_object[$tab['CLASS']]->set_acl_category($category);
+      $this->read_only |= $this->by_object[$tab['CLASS']]->read_only;
 
       /* Initialize current */
       if ($this->current == ""){
@@ -35,12 +43,36 @@ class worktabs extends tabs
     $this->addSpecialTabs();
   }
 
+
+  /*! \brief Reinitializes the tab classes with fresh ldap values.
+    This maybe usefull if for example the apply button was pressed.
+   */
+  function re_init()
+  {
+    $baseobject= NULL;
+    foreach($this->by_object as $name => $object){
+      $class = get_class($object);
+      if(in_array($class,array("reference","acl"))) continue;
+      if ($baseobject === NULL){
+        $baseobject= new $class($this->config, $this->dn,NULL,$this);
+        $baseobject->enable_CSN_check();
+        $this->by_object[$name]= $baseobject;
+      } else {
+        $this->by_object[$name]= new $class($this->config, $this->dn, $baseobject,$this);
+      }
+      $this->by_object[$name]->parent= &$this;
+      $this->by_object[$name]->set_acl_category($this->acl_category);
+    }
+  }
+
+
   function save_object($save_current= FALSE)
   {
     tabs::save_object($save_current);
 
     /* Assign current cn */
     $baseobject= $this->by_object['workgeneric'];
+    $baseobject->netConfigDNS->cn= $baseobject->cn;
     foreach ($this->by_object as $key => $obj){
       $this->by_object[$key]->cn= $baseobject->cn;
     }
@@ -52,7 +84,15 @@ class worktabs extends tabs
     /* Check for new 'dn', in order to propagate the
        'dn' to all plugins */
     $baseobject= $this->by_object['workgeneric'];
-    $this->dn= "cn=".$baseobject->cn.",".get_ou('workstationou').$baseobject->base;
+    $this->dn= "cn=".$baseobject->cn.",".get_ou('workstationRDN').$baseobject->base;
+
+    if($this->dn != $baseobject->orig_dn && $baseobject->orig_dn != "new"){
+
+      /* Udpate acls */
+      $baseobject->update_acls($baseobject->orig_dn,$this->dn);
+      $baseobject->move($baseobject->orig_dn,$this->dn);
+    }
+
     $baseobject->dn= $this->dn;
 
     foreach ($this->by_object as $key => $obj){