Code

Updated workstation - Startup
[gosa.git] / plugins / admin / systems / class_goNtpServer.inc
index 26434eefba5236985f1b2d056803b40b35c0bb37..5a4f40f8240d39131c15534c873e6e37114f40ca 100644 (file)
@@ -1,7 +1,5 @@
 <?php
 
-require_once("class_goService.inc");
-
 class goNtpServer extends goService{
 
   var $cli_summary      = "This pluign is used within the ServerService Pluign \nand indicates that this server supports NTP service.";
@@ -24,7 +22,7 @@ class goNtpServer extends goService{
   var $cn               = "";
   var $view_logged  =FALSE;
 
-  function goNtpServer($config,$dn)
+  function goNtpServer(&$config,$dn)
   {
     goService::goService($config,$dn);
     $this->DisplayName = _("Time service (NTP)");
@@ -46,7 +44,7 @@ class goNtpServer extends goService{
 
     if($this->is_account && !$this->view_logged){
       $this->view_logged = TRUE;
-      @log::log("view","server/".get_class($this),$this->dn);
+      new log("view","server/".get_class($this),$this->dn);
     }
 
     /* Here we add a new entry  */
@@ -99,10 +97,10 @@ class goNtpServer extends goService{
     show_ldap_error($ldap->get_error(), sprintf(_("Saving server services/goNtpServer with dn '%s' failed."),$this->dn));
     if($this->initially_was_account){
       $this->handle_post_events("modify");
-      @log::log("modify","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
+      new log("modify","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
     }else{
       $this->handle_post_events("add");
-      @log::log("create","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
+      new log("create","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
     }
   }
 
@@ -124,6 +122,22 @@ class goNtpServer extends goService{
           ));
   }
 
+  
+  function PrepareForCopyPaste($source)
+  {
+    plugin::PrepareForCopyPaste($source);
+
+    /* Load arrays */
+    $tmp = array();
+    if (isset($source['goTimeSource'])){
+      for ($i= 0; $i<$source['goTimeSource']['count']; $i++){
+        $tmp[$source['goTimeSource'][$i]]= $source['goTimeSource'][$i];
+      }
+    }
+    $this->goTimeSource= $tmp;
+
+
+  }
 
   function check(){ return array();}