From 10da1845dbd4848ed05a7b40ceb1accc496b318c Mon Sep 17 00:00:00 2001 From: cajus Date: Thu, 3 Sep 2009 10:28:45 +0000 Subject: [PATCH] Removed last system login git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14202 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../plugins/personal/generic/class_user.inc | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/gosa-core/plugins/personal/generic/class_user.inc b/gosa-core/plugins/personal/generic/class_user.inc index 45678fac1..4f4b16a8e 100644 --- a/gosa-core/plugins/personal/generic/class_user.inc +++ b/gosa-core/plugins/personal/generic/class_user.inc @@ -37,12 +37,6 @@ class user extends plugin var $plHeadline= "Generic"; var $plDescription= "Edit organizational user settings"; - /* The attribute gotoLastSystemLogin represents the timestamp of the last - successfull login on the users workstation. - Read the FAQ to get a hint about how to configure this. - */ - var $gotoLastSystemLogin = ""; - /* Plugin specific values */ var $base= ""; var $orig_base= ""; @@ -146,15 +140,6 @@ class user extends plugin /* Load base attributes */ plugin::plugin ($config, $dn); - /* If gotoLastSystemLogin is available read it from ldap and create a readable - date time string, fallback to sambaLogonTime if available. - */ - if(isset($this->attrs['gotoLastSystemLogin'][0]) && preg_match("/^[0-9]*$/",$this->attrs['gotoLastSystemLogin'][0])){ - $this->gotoLastSystemLogin = date("d.m.Y H:i:s", strtotime($this->attrs['gotoLastSystemLogin'][0])); - } else if(isset($this->attrs['sambaLogonTime'][0]) && preg_match("/^[0-9]*$/",$this->attrs['sambaLogonTime'][0])){ - $this->gotoLastSystemLogin = date("d.m.Y H:i:s", $this->attrs['sambaLogonTime'][0]); - } - $this->orig_dn = $this->dn; $this->new_dn = $dn; @@ -266,7 +251,6 @@ class user extends plugin } $smarty= get_smarty(); - $smarty->assign("gotoLastSystemLogin",$this->gotoLastSystemLogin); /* Fill calendar */ if ($this->dateOfBirth == "0"){ -- 2.30.2