ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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 
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
Definition: storeScorm.php:23
exists(string $id)
Checks if the current id exists.
Class ilForumNotificationCache.