ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
StringHash.php
Go to the documentation of this file.
1 <?php
2 
12 {
16  protected $accessed = array();
17 
23  public function offsetGet($index)
24  {
25  $this->accessed[$index] = true;
26  return parent::offsetGet($index);
27  }
28 
33  public function getAccessed()
34  {
35  return $this->accessed;
36  }
37 
41  public function resetAccessed()
42  {
43  $this->accessed = array();
44  }
45 }
46 
47 // vim: et sw=4 sts=4