summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d9e06cf)
raw | patch | inline | side by side (parent: d9e06cf)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 2 Aug 2010 10:07:59 +0000 (10:07 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 2 Aug 2010 10:07:59 +0000 (10:07 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19323 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/opsi/admin/opsiLicenses/class_licenseUsage.inc | patch | blob | history |
diff --git a/gosa-plugins/opsi/admin/opsiLicenses/class_licenseUsage.inc b/gosa-plugins/opsi/admin/opsiLicenses/class_licenseUsage.inc
index 06e00d45070fc9b1311f5ae9fcd5dc032cdf3aa9..faf367eb87acf92330a2c323ed108a86bb56044a 100644 (file)
function __construct(&$config,$dn)
{
+ $this->initTime = microtime(TRUE);
$this->config = $config;
$this->dn = $this->orig_dn = $dn;
$this->si = new opsiLicenceHandler($this->config);
$this->usageList->setHeight("300px");
$this->usageList->setHeader(array(_("Host"),_("Key"),_("Pool"), _("License")));
$this->usageList->setDefaultSortColumn(1);
+
+ // Create statistic table entry
+ stats::log('plugin', $class = get_class($this), $category = array($this->acl_category), $action = 'open',
+ $amount = 1, $duration = (microtime(TRUE) - $this->initTime));
+
}