summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a07fe32)
raw | patch | inline | side by side (parent: a07fe32)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 2 Aug 2010 10:08:15 +0000 (10:08 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 2 Aug 2010 10:08:15 +0000 (10:08 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19329 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/mit-krb5/admin/systems/services/kerberos/class_krb5_policy.inc | patch | blob | history |
diff --git a/gosa-plugins/mit-krb5/admin/systems/services/kerberos/class_krb5_policy.inc b/gosa-plugins/mit-krb5/admin/systems/services/kerberos/class_krb5_policy.inc
index 3379df4cc6688fb3ca770ea668ea60e1b3b90fe2..ef0f7de23ec9e760e6ce8af7f397a7345893ea8f 100644 (file)
*/
public function __construct($config,$entry,$parent)
{
+ $this->initTime = microtime(TRUE);
$this->config = $config;
$this->parent = $parent;
if(count($entry)){
$this->data['PW_MIN_LIFE'] = 36000;
}
$this->init_name = $this->name;
+
+ // 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));
+
}