SysLog.constructor (type, object, logentry, sysadmin)
constructor for a new SysLog-object

  • Parameter String:
    type of modified object
  • Parameter String:
    name or ID of modified object
  • Parameter String:
    message to add as log-entry
  • Parameter Object:
    sysadmin
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:   }