From: hickert Date: Mon, 2 Aug 2010 10:07:27 +0000 (+0000) Subject: Ensure we either call the plugins constructor or manually set the initTime variable... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6020f682545572ecf8a3642f0e04fbaa3efebe01;p=gosa.git Ensure we either call the plugins constructor or manually set the initTime variable for the new statistics plugin. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19310 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/ldapmanager/addons/ldapmanager/class_exportxls.inc b/gosa-plugins/ldapmanager/addons/ldapmanager/class_exportxls.inc index 94df02cfd..b184c99b2 100644 --- a/gosa-plugins/ldapmanager/addons/ldapmanager/class_exportxls.inc +++ b/gosa-plugins/ldapmanager/addons/ldapmanager/class_exportxls.inc @@ -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)); }