X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fdbase_base.phh;h=a827725719fefb5e9dbe71df63b752b04845e2c4;hb=f6a01481a38713553a82314f845bf39fddaa998d;hp=2db3934223415a8c9c33367f9db6d5eced697217;hpb=e7958819c64c6a5aeb2ee568fe187d3f0389195f;p=brisk.git diff --git a/web/Obj/dbase_base.phh b/web/Obj/dbase_base.phh index 2db3934..a827725 100644 --- a/web/Obj/dbase_base.phh +++ b/web/Obj/dbase_base.phh @@ -47,31 +47,38 @@ class LoginDBItem { return ($ret); } - function codeget() + function code_get() { return $this->code; } - function loginget() + function login_get() { return $this->login; } - function passget() + function pass_get() { return $this->pass; } - function emailget() + function email_get() { return $this->email; } - function typeget() + function type_get() { return $this->type; } } +class LoginDBItemOld extends LoginDBItem { + function LoginDBItemOld($login, $pass, $email, $type) + { + parent::LoginDBItem(-1, $login, $pass, $email, $type); + } +} + ?> \ No newline at end of file