ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
◀ ilDoc Overview
class.ilWACCookie.php
Go to the documentation of this file.
1
<?
php
2
require_once(
'./Services/WebAccessChecker/interfaces/interface.ilWACCookieInterface.php'
);
3
9
class
ilWACCookie
implements
ilWACCookieInterface
{
10
21
public
function
set
($name, $value =
""
, $expire = 0,
$path
=
""
, $domain =
""
, $secure =
false
, $httponly =
false
) {
22
return
setcookie($name, $value, $expire,
$path
, $domain, $secure, $httponly);
23
}
24
25
30
public
function
get
($name) {
31
return
$_COOKIE
[$name];
32
}
33
34
39
public
function
exists
($name) {
40
return
isset(
$_COOKIE
[$name]);
41
}
42
43
47
public
function
getAll
() {
48
return
$_COOKIE
;
49
}
50
}
ilWACCookie\exists
exists($name)
Definition:
class.ilWACCookie.php:39
$path
$path
Definition:
aliased.php:25
ilWACCookieInterface
Class ilWACCookieInterface.
Definition:
interface.ilWACCookieInterface.php:8
ilWACCookie
Class ilWACCookie.
Definition:
class.ilWACCookie.php:9
ilWACCookie\getAll
getAll()
Definition:
class.ilWACCookie.php:47
$_COOKIE
$_COOKIE['ilClientId']
Definition:
BPMN2Parser.php:15
php
Services
WebAccessChecker
classes
class.ilWACCookie.php
Generated on Fri Jan 24 2025 19:01:17 for ILIAS by
1.8.13 (using
Doxyfile
)