Code

Ensure we either call the plugins constructor or manually set the initTime variable...
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 2 Aug 2010 10:07:25 +0000 (10:07 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 2 Aug 2010 10:07:25 +0000 (10:07 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19309 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/ldapmanager/addons/ldapmanager/class_export.inc

index b223e7453503c91a9af9d84737950e3746a2c5d6..296b5045a6843d9663801179a894803036d414e8 100644 (file)
@@ -15,6 +15,8 @@ class ldifexport extends plugin
 
     function ldifexport (&$config, $dn= NULL)
     {
+
+        $this->initTime = microtime(TRUE);
         /* Include config object */
         $this->config= &$config;
         $this->ui = get_userinfo();
@@ -23,6 +25,8 @@ class ldifexport extends plugin
         $this->baseSelector->setSubmitButton(false);
         $this->baseSelector->setHeight(300);
         $this->baseSelector->update(true);
+        stats::log('plugin', $class = get_class($this), $category = array($this->acl_category),  $action = 'open',
+                $amount = 1, $duration = (microtime(TRUE) - $this->initTime));
 
     }