3 * brisk - dbase_base.phh
5 * Copyright (C) 2011-2012 Matteo Nastasi
6 * mailto: nastasi@alternativeoutput.it
7 * matteo.nastasi@milug.org
8 * web: http://www.alternativeoutput.it
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details. You should have received a
19 * copy of the GNU General Public License along with this program; if
20 * not, write to the Free Software Foundation, Inc, 59 Temple Place -
21 * Suite 330, Boston, MA 02111-1307, USA.
33 function LoginDBItem($code, $login, $pass, $email, $type)
36 $this->login = $login;
38 $this->email = $email;
42 static function LoginDBItemFromRecord($rec)
44 $ret = new LoginDBItem($rec->code, $rec->login, $rec->pass,
45 $rec->email, $rec->type);
77 class LoginDBItemOld extends LoginDBItem {
78 function LoginDBItemOld($login, $pass, $email, $type)
80 parent::LoginDBItem(-1, $login, $pass, $email, $type);