supp_comp partial support (db/prefs management, usage is missing)
[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     var $last_dona;
33     var $supp_comp;
34
35     function LoginDBItem($code, $login, $pass, $email, $type, $last_dona, $supp_comp)
36     {
37         $this->code      = $code;
38         $this->login     = $login;
39         $this->pass      = $pass;
40         $this->email     = $email;
41         $this->type      = $type;
42         $this->last_dona = $last_dona;
43         $this->supp_comp = $supp_comp;
44     }
45
46     static function LoginDBItemFromRecord($rec)
47     {
48         $ret = new LoginDBItem($rec->code, $rec->login, $rec->pass, 
49                                $rec->email, $rec->type, $rec->last_dona,
50                                $rec->supp_comp);
51
52         return ($ret);
53     }
54
55     function code_get()
56     {
57         return $this->code;
58     }
59
60     function login_get()
61     {
62         return $this->login;
63     }
64     
65     function pass_get()
66     {
67         return $this->pass;
68     }
69
70     function email_get()
71     {
72         return $this->email;
73     }
74
75     function type_get()
76     {
77         return $this->type;
78     }
79
80     function last_dona_get()
81     {
82         return $this->last_dona;
83     }
84
85     function supp_comp_get()
86     {
87         return $this->supp_comp;
88     }
89
90 }
91
92 ?>