ILIAS
eassessment Revision 61809
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
EntityLookup.php
Go to the documentation of this file.
1
<?php
2
6
class
HTMLPurifier_EntityLookup
{
7
11
public
$table
;
12
19
public
function
setup
(
$file
=
false
) {
20
if
(!
$file
) {
21
$file
= HTMLPURIFIER_PREFIX .
'/HTMLPurifier/EntityLookup/entities.ser'
;
22
}
23
$this->table = unserialize(file_get_contents(
$file
));
24
}
25
30
public
static
function
instance
($prototype =
false
) {
31
// no references, since PHP doesn't copy unless modified
32
static
$instance = null;
33
if
($prototype) {
34
$instance = $prototype;
35
} elseif (!$instance) {
36
$instance =
new
HTMLPurifier_EntityLookup
();
37
$instance->setup();
38
}
39
return
$instance;
40
}
41
42
}
43
44
// vim: et sw=4 sts=4
Services
Html
HtmlPurifier
library
HTMLPurifier
EntityLookup.php
Generated on Mon Apr 25 2016 19:01:32 for ILIAS by
1.8.1.2 (using
Doxyfile
)