ILIAS
release_4-3 Revision
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
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
Services
Html
HtmlPurifier
library
HTMLPurifier
StringHash.php
Generated on Sat Apr 30 2016 19:01:01 for ILIAS by
1.8.1.2 (using
Doxyfile
)