mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
bb0435bdd4
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@131 48356398-32a2-884e-a903-53898d9a118a
21 lines
338 B
PHP
21 lines
338 B
PHP
<?php
|
|
|
|
class HTMLPurifier_IDAccumulator
|
|
{
|
|
|
|
var $ids = array();
|
|
|
|
function add($id) {
|
|
if (isset($this->ids[$id])) return false;
|
|
return $this->ids[$id] = true;
|
|
}
|
|
|
|
function load($array_of_ids) {
|
|
foreach ($array_of_ids as $id) {
|
|
$this->ids[$id] = true;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
?>
|