XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
StringHash.php
Go to the documentation of this file.
1 <?php
2 
11 class HTMLPurifier_StringHash extends ArrayObject
12 {
13  protected $accessed = array();
14 
18  public function offsetGet($index) {
19  $this->accessed[$index] = true;
20  return parent::offsetGet($index);
21  }
22 
27  public function getAccessed() {
28  return $this->accessed;
29  }
30 
34  public function resetAccessed() {
35  $this->accessed = array();
36  }
37 }
38 
39 // vim: et sw=4 sts=4