ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
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
l
m
n
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
class.ilForumNotificationCache.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
3
9
class
ilForumNotificationCache
10
{
12
private
$storage
= array();
13
19
public
function
fetch
(
string
$id)
20
{
21
if
(
false
=== $this->
exists
($id)) {
22
throw
new
InvalidArgumentException
(
'Storage id doesn\'t exist'
);
23
}
24
25
return
$this->storage[$id];
26
}
27
32
public
function
store
(
string
$key,
$data
)
33
{
34
$this->storage[$key] =
$data
;
35
}
36
43
public
function
exists
(
string
$id)
44
{
45
return
array_key_exists($id, $this->storage);
46
}
47
53
public
function
createKeyByValues
(array $values)
54
{
55
$cacheKey = md5(implode(
'|'
, $values));
56
57
return
$cacheKey;
58
}
59
}
$data
$data
Definition:
storeScorm.php:23
ilForumNotificationCache\createKeyByValues
createKeyByValues(array $values)
Definition:
class.ilForumNotificationCache.php:53
ilForumNotificationCache\exists
exists(string $id)
Checks if the current id exists.
Definition:
class.ilForumNotificationCache.php:43
ilForumNotificationCache\store
store(string $key, $data)
Definition:
class.ilForumNotificationCache.php:32
ilForumNotificationCache
Class ilForumNotificationCache.
Definition:
class.ilForumNotificationCache.php:9
ilForumNotificationCache\fetch
fetch(string $id)
Definition:
class.ilForumNotificationCache.php:19
ilForumNotificationCache\$storage
$storage
Definition:
class.ilForumNotificationCache.php:12
InvalidArgumentException
Modules
Forum
classes
class.ilForumNotificationCache.php
Generated on Thu Apr 3 2025 21:00:55 for ILIAS by
1.8.13 (using
Doxyfile
)