mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-08-03 04:37:39 +02:00
Remove Singleton functionality, the accumulator will just have to be passed around.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@130 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
@@ -5,23 +5,11 @@ class HTMLPurifier_IDAccumulator
|
|||||||
|
|
||||||
var $ids = array();
|
var $ids = array();
|
||||||
|
|
||||||
function &instance() {
|
|
||||||
static $instance = null;
|
|
||||||
if (empty($instance)) {
|
|
||||||
$instance = new HTMLPurifier_IDAccumulator();
|
|
||||||
}
|
|
||||||
return $instance;
|
|
||||||
}
|
|
||||||
|
|
||||||
function add($id) {
|
function add($id) {
|
||||||
if (isset($this->ids[$id])) return false;
|
if (isset($this->ids[$id])) return false;
|
||||||
return $this->ids[$id] = true;
|
return $this->ids[$id] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function reset() {
|
|
||||||
$this->ids = array();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
@@ -8,16 +8,11 @@ class HTMLPurifier_IDAccumulatorTest extends UnitTestCase
|
|||||||
function test() {
|
function test() {
|
||||||
|
|
||||||
// initialize the accumulator
|
// initialize the accumulator
|
||||||
$accumulator = HTMLPurifier_IDAccumulator::instance();
|
$accumulator = new HTMLPurifier_IDAccumulator();
|
||||||
$accumulator->reset();
|
|
||||||
|
|
||||||
$this->assertTrue( $accumulator->add('id1'));
|
$this->assertTrue( $accumulator->add('id1'));
|
||||||
$this->assertTrue( $accumulator->add('id2'));
|
$this->assertTrue( $accumulator->add('id2'));
|
||||||
$this->assertFalse($accumulator->add('id1')); // repeated id
|
$this->assertFalse($accumulator->add('id1')); // repeated id
|
||||||
$accumulator->reset();
|
|
||||||
|
|
||||||
$this->assertTrue( $accumulator->add('id2')); // test reset
|
|
||||||
$accumulator->reset();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user