ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
Cookies.php
Go to the documentation of this file.
1
<?php
45
class
Slim_Session_Handler_Cookies
extends
Slim_Session_Handler
{
46
47
public
function
open
( $savePath, $sessionName ) {
48
return
true
;
49
}
50
51
public
function
close
() {
52
return
true
;
//Not used
53
}
54
55
public
function
read
( $id ) {
56
return
$this->app->getEncryptedCookie($id);
57
}
58
59
public
function
write
( $id, $sessionData ) {
60
$this->app->setEncryptedCookie($id, $sessionData, 0);
61
}
62
63
public
function
destroy
( $id ) {
64
$this->app->deleteCookie($id);
65
}
66
67
public
function
gc
( $maxLifetime ) {
68
return
true
;
//Not used
69
}
70
71
}
Slim_Session_Handler_Cookies
Definition:
Cookies.php:45
Slim_Session_Handler_Cookies\close
close()
Definition:
Cookies.php:51
Slim_Session_Handler_Cookies\read
read( $id)
Definition:
Cookies.php:55
Slim_Session_Handler_Cookies\gc
gc( $maxLifetime)
Definition:
Cookies.php:67
Slim_Session_Handler
Definition:
Handler.php:44
Slim_Session_Handler_Cookies\write
write( $id, $sessionData)
Definition:
Cookies.php:59
Slim_Session_Handler_Cookies\destroy
destroy( $id)
Definition:
Cookies.php:63
Slim_Session_Handler_Cookies\open
open( $savePath, $sessionName)
Definition:
Cookies.php:47
Services
WebServices
Rest
lib
Slim
Session
Handler
Cookies.php
Generated on Mon Apr 7 2025 19:01:00 for ILIAS by
1.8.13 (using
Doxyfile
)