SysLog.constructor (type, object, logentry, sysadmin) |
constructor for a new SysLog-object
|
Sourcecode in SysLog/objectFunctions.js:
1: function constructor (type, object, logentry, sysadmin) { 2: this.type = type; 3: this.object = object; 4: this.logentry = logentry; 5: this.sysadmin = sysadmin; 6: this.createtime = new Date(); 7: return this; 8: } |