Code

Updated password change for csvimport
[gosa.git] / gosa-plugins / ldapmanager / addons / ldapmanager / class_exportxls.inc
index 94df02cfd5af24c1ecec07958ac7b0903926e7c2..b184c99b280b09910183ecab13e711481007cc50 100644 (file)
@@ -19,15 +19,18 @@ class xlsexport extends plugin
     function xlsexport (&$config, $dn= NULL)
     {
         /* Include config object */
+        $this->initTime = microtime(TRUE);
         $this->config= &$config;
 
         $this->ui = get_userinfo();
-        
+
         $this->base = $this->config->current['BASE'];
         $this->baseSelector= new baseSelector($this->config->idepartments, $this->base);
         $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));
 
     }