POST management working, preferences managed (room only)
[brisk.git] / web / Obj / dbase_base.phh
1 <?php
2   /*
3    *  brisk - dbase_base.phh
4    *
5    *  Copyright (C) 2011-2012 Matteo Nastasi
6    *                          mailto: nastasi@alternativeoutput.it 
7    *                                  matteo.nastasi@milug.org
8    *                          web: http://www.alternativeoutput.it
9    *
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.
14    *
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.
22    *
23    */
24
25
26 class LoginDBItem {
27     var $code;
28     var $login;
29     var $pass;
30     var $email;
31     var $type;
32
33     function LoginDBItem($code, $login, $pass, $email, $type)
34     {
35         $this->code  = $code;
36         $this->login = $login;
37         $this->pass  = $pass;
38         $this->email = $email;
39         fprintf(STDERR, "QQ: %s: %x\n", __FUNCTION__, $type);
40         $this->type  = $type;
41     }
42
43     static function LoginDBItemFromRecord($rec)
44     {
45         $ret = new LoginDBItem($rec->code, $rec->login, $rec->pass, 
46                                  $rec->email, $rec->type);
47
48         return ($ret);
49     }
50
51     function code_get()
52     {
53         return $this->code;
54     }
55
56     function login_get()
57     {
58         return $this->login;
59     }
60     
61     function pass_get()
62     {
63         return $this->pass;
64     }
65
66     function email_get()
67     {
68         return $this->email;
69     }
70
71     function type_get()
72     {
73         fprintf(STDERR, "TYPE GET: %d\n", $this->type);
74         return $this->type;
75     }
76
77 }
78
79 ?>