X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fdbase_base.phh;h=d82de62c8cb10c39c691523090a712b650b1fcdf;hb=b000085f6c20397e104ae63a05a1dc9943ca9b6a;hp=2db3934223415a8c9c33367f9db6d5eced697217;hpb=e7958819c64c6a5aeb2ee568fe187d3f0389195f;p=brisk.git diff --git a/web/Obj/dbase_base.phh b/web/Obj/dbase_base.phh index 2db3934..d82de62 100644 --- a/web/Obj/dbase_base.phh +++ b/web/Obj/dbase_base.phh @@ -2,7 +2,7 @@ /* * brisk - dbase_base.phh * - * Copyright (C) 2011 Matteo Nastasi + * Copyright (C) 2011-2012 Matteo Nastasi * mailto: nastasi@alternativeoutput.it * matteo.nastasi@milug.org * web: http://www.alternativeoutput.it @@ -39,35 +39,35 @@ class LoginDBItem { $this->type = $type; } - static function &LoginDBItemFromRecord($rec) + static function LoginDBItemFromRecord($rec) { - $ret = & new LoginDBItem($rec->code, $rec->login, $rec->pass, + $ret = new LoginDBItem($rec->code, $rec->login, $rec->pass, $rec->email, $rec->type); 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; }