X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fdbase_base.phh;h=ab20e6c64df517ed0d4f15708306d33f801d8183;hb=abbf134a4f6bcf2ce006011f263148b0ea073bf5;hp=d82de62c8cb10c39c691523090a712b650b1fcdf;hpb=22b71dd0fd76bf5af565d56c3e82ea77b4b44bc5;p=brisk.git diff --git a/web/Obj/dbase_base.phh b/web/Obj/dbase_base.phh index d82de62..ab20e6c 100644 --- a/web/Obj/dbase_base.phh +++ b/web/Obj/dbase_base.phh @@ -29,20 +29,29 @@ class LoginDBItem { var $pass; var $email; var $type; + var $last_dona; + var $supp_comp; + var $lice_vers; + var $disa_reas; - function LoginDBItem($code, $login, $pass, $email, $type) + function LoginDBItem($code, $login, $pass, $email, $type, $last_dona, $supp_comp, $lice_vers, $disa_reas) { - $this->code = $code; - $this->login = $login; - $this->pass = $pass; - $this->email = $email; - $this->type = $type; + $this->code = $code; + $this->login = $login; + $this->pass = $pass; + $this->email = $email; + $this->type = $type; + $this->last_dona = $last_dona; + $this->supp_comp = $supp_comp; + $this->lice_vers = $lice_vers; + $this->disa_reas = $disa_reas; } static function LoginDBItemFromRecord($rec) { $ret = new LoginDBItem($rec->code, $rec->login, $rec->pass, - $rec->email, $rec->type); + $rec->email, $rec->type, $rec->last_dona, + $rec->supp_comp, $rec->lice_vers, $rec->disa_reas); return ($ret); } @@ -72,6 +81,30 @@ class LoginDBItem { return $this->type; } + function last_dona_get() + { + return $this->last_dona; + } + + function supp_comp_get() + { + return $this->supp_comp; + } + function supp_comp_set($supp_comp) + { + $this->supp_comp = $supp_comp; + } + + function lice_vers_get() + { + return $this->lice_vers; + } + + function disa_reas_get() + { + return $this->disa_reas; + } + } ?> \ No newline at end of file