Code

* Created "old" branch and moved stuff
[gosa.git] / branches / old / gosa-plugins / gofon / admin / systems / gofon / tabs_phone.inc
diff --git a/branches/old/gosa-plugins/gofon/admin/systems/gofon/tabs_phone.inc b/branches/old/gosa-plugins/gofon/admin/systems/gofon/tabs_phone.inc
new file mode 100644 (file)
index 0000000..e4d05b1
--- /dev/null
@@ -0,0 +1,41 @@
+<?php
+
+class phonetabs extends tabs
+{
+
+  function phonetabs($config, $data, $dn,$category)
+  {
+    tabs::tabs($config, $data, $dn,$category);
+
+    /* Add references/acls/snapshots */
+    $this->addSpecialTabs();
+  }
+
+  function save_object($save_current= FALSE)
+  {
+    tabs::save_object($save_current);
+
+    $baseobject = $this->by_object['phoneGeneric'];
+    $baseobject->netConfigDNS->cn= $baseobject->cn;
+  }
+
+
+  function save($ignore_account= FALSE)
+  {
+    /* Check for new 'dn', in order to propagate the
+       'dn' to all plugins */
+    $baseobject= $this->by_object['phoneGeneric'];
+    $this->dn= "cn=$baseobject->cn,".get_ou('phoneou').$baseobject->base;
+    $baseobject->dn= $this->dn;
+
+    foreach ($this->by_object as $key => $obj){
+      $this->by_object[$key]->dn= $this->dn;
+    }
+
+    tabs::save(TRUE);
+  }
+
+}
+
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
+?>