summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b3728c7)
raw | patch | inline | side by side (parent: b3728c7)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 28 Apr 2010 08:57:10 +0000 (08:57 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 28 Apr 2010 08:57:10 +0000 (08:57 +0000) |
-Copy all relevant attributes again, since 'samba2' support was dropped copy and paste wasn't working anymore.
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17900 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17900 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/samba/personal/samba/class_sambaAccount.inc | patch | blob | history |
diff --git a/gosa-plugins/samba/personal/samba/class_sambaAccount.inc b/gosa-plugins/samba/personal/samba/class_sambaAccount.inc
index 2b7ba0a331b17b20fa06159c66684572598129a8..a6976a7afffb59333bbcf95972b541bb67327d68 100644 (file)
/* attribute list for save action */
var $ctxattributes= array();
- var $attributes= array();
- var $objectclasses= array();
+ var $attributes= array("sambaSID", "sambaPwdLastSet", "sambaLogonTime",
+ "sambaLogoffTime", "sambaKickoffTime", "sambaPwdCanChange",
+ "sambaPwdMustChange", "sambaAcctFlags", "uid", "sambaMungedDial",
+ "sambaHomePath", "sambaHomeDrive", "sambaLogonScript",
+ "sambaProfilePath", "sambaPrimaryGroupSID", "sambaDomainName",
+ "sambaUserWorkstations", "sambaPasswordHistory",
+ "sambaLogonHours", "sambaBadPasswordTime",
+ "sambaBadPasswordCount");
+ var $objectclasses= array('sambaSamAccount');
var $uid= "";
var $CopyPasteVars = array("kickoff_time_set","logoff_time_set","logon_time_set","mungedObject","orig_sambaDomainName");
function sambaAccount (&$config, $dn= NULL)
{
- /* Load attributes depending on the samba version */
- $this->attributes= array ("sambaSID", "sambaPwdLastSet", "sambaLogonTime",
- "sambaLogoffTime", "sambaKickoffTime", "sambaPwdCanChange",
- "sambaPwdMustChange", "sambaAcctFlags", "uid", "sambaMungedDial",
- "sambaHomePath", "sambaHomeDrive", "sambaLogonScript",
- "sambaProfilePath", "sambaPrimaryGroupSID", "sambaDomainName",
- "sambaUserWorkstations", "sambaPasswordHistory",
- "sambaLogonHours", "sambaBadPasswordTime",
- "sambaBadPasswordCount");
- $this->objectclasses= array ("sambaSamAccount");
$this->mungedObject= new sambaMungedDial;
$this->ctxattributes= $this->mungedObject->ctxattributes;
/* Set a new SID */
$this->sambaSID = "";
+
+ /* Fill mungedDial field */
+ if (isset($source['sambaMungedDial'])){
+ $this->mungedObject->load($source['sambaMungedDial'][0]);
+ }
+
+ /* Password expiery */
+ if(isset($source['sambaPwdMustChange']) &&
+ $source['sambaPwdMustChange'][0] != 0){
+ $this->password_expires= 1;
+ }
+
+ if(isset($source['sambaLogonTime']) && ! (
+ $source['sambaLogonTime'][0] == 0 ||
+ $source['sambaLogonTime'][0] == 2147483647
+ )){
+ $this->logon_time_set= 1;
+ }
+ if(isset($source['sambaLogoffTime']) && ! (
+ $source['sambaLogoffTime'][0] == 0 ||
+ $source['sambaLogoffTime'][0] == 2147483647
+ )){
+ $this->logoff_time_set= 1;
+ }
+
+ /* Account expiery */
+ if(isset($source['sambaKickoffTime']) && ! (
+ $source['sambaKickoffTime'][0] == 0 ||
+ $source['sambaKickoffTime'][0] == 2147483647
+ )){
+ $this->kickoff_time_set= 1;
+ }
+
+
if(isset($source['sambaKickoffTime'][0])){
$this->sambaKickoffTime = date('d.m.Y', $source['sambaKickoffTime'][0]);
}