Platform
3.1
PHP API documentation
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Pages
Class.SessionVar.php
Go to the documentation of this file.
1
<?php
2
/*
3
* @author Anakeen
4
* @license http://creativecommons.org/licenses/by-nc-sa/2.0/fr/ Anakeen - licence CC
5
* @package FDL
6
*/
7
/**
8
* Generated Header (not documented yet)
9
*
10
* @author Anakeen 2000
11
* @version $Id: Class.SessionVar.php,v 1.3 2003/08/18 15:46:42 eric Exp $
12
* @license http://creativecommons.org/licenses/by-nc-sa/2.0/fr/ Anakeen - licence CC
13
* @package FDL
14
* @subpackage CORE
15
*/
16
/**
17
*/
18
// ---------------------------------------------------------------------------
19
// Marc Claverie (marc.claverie@anakeen.com)- anakeen 2000
20
// ---------------------------------------------------------------------------
21
// This program is free software; you can redistribute it and/or modify
22
// it under the terms of the GNU General Public License as published by
23
// the Free Software Foundation; either version 2 of the License, or (at
24
// your option) any later version.
25
//
26
// This program is distributed in the hope that it will be useful, but
27
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
28
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
29
// for more details.
30
//
31
// You should have received a copy of the GNU General Public License along
32
// with this program; if not, write to the Free Software Foundation, Inc.,
33
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34
// ---------------------------------------------------------------------------
35
// $Id: Class.SessionVar.php,v 1.3 2003/08/18 15:46:42 eric Exp $
36
//
37
// $Log: Class.SessionVar.php,v $
38
// Revision 1.3 2003/08/18 15:46:42 eric
39
// phpdoc
40
//
41
// Revision 1.2 2002/01/25 14:31:37 eric
42
// gestion de cache objet - variable de session
43
//
44
// Revision 1.1 2002/01/08 12:41:34 eric
45
// first
46
//
47
// Revision 1.2 2000/10/11 12:18:41 yannick
48
// Gestion des sessions
49
//
50
// Revision 1.1 2000/10/09 10:44:02 yannick
51
// Déplacement des sessions
52
//
53
// Revision 1.1.1.1 2000/10/05 17:29:10 yannick
54
// Importation
55
//
56
// Revision 1.1 2000/06/30 15:24:49 marc
57
// Mise en conf, version initiale
58
//
59
//
60
// ---------------------------------------------------------------------------
61
$DROITS_CLASS_SESSIONVAR_PHP
=
'$Id: Class.SessionVar.php,v 1.3 2003/08/18 15:46:42 eric Exp $'
;
62
63
include_once (
'Class.DbObj.php'
);
64
65
class
SessionVar
extends
DbObj
66
{
67
68
var
$fields
= array(
69
"session"
,
70
"key"
,
71
"val"
72
);
73
74
var
$id_fields
= array(
75
"session"
,
76
"key"
77
);
78
79
var
$dbtable
=
"session_vars"
;
80
81
var
$sqlcreate
=
"create table session_vars ( session varchar(100),
82
key varchar(50),
83
val varchar(200));
84
create index session_vars_idx on session_vars(session,key);"
;
85
var
$isCacheble
=
false
;
86
}
87
?>
← centre documentaire
© anakeen
- published under
CC License
-
Dynacase