mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
4ab930dab4
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@129 48356398-32a2-884e-a903-53898d9a118a
27 lines
466 B
PHP
27 lines
466 B
PHP
<?php
|
|
|
|
class HTMLPurifier_IDAccumulator
|
|
{
|
|
|
|
var $ids = array();
|
|
|
|
function &instance() {
|
|
static $instance = null;
|
|
if (empty($instance)) {
|
|
$instance = new HTMLPurifier_IDAccumulator();
|
|
}
|
|
return $instance;
|
|
}
|
|
|
|
function add($id) {
|
|
if (isset($this->ids[$id])) return false;
|
|
return $this->ids[$id] = true;
|
|
}
|
|
|
|
function reset() {
|
|
$this->ids = array();
|
|
}
|
|
|
|
}
|
|
|
|
?>
|