4 * Component of HTMLPurifier_AttrContext that accumulates IDs to prevent dupes
5 * @note In Slashdot-speak, dupe means duplicate.
6 * @note The default constructor does not accept $config or $context objects:
7 * use must use the static build() factory method to perform initialization.
9 class HTMLPurifier_IDAccumulator
13 * Lookup table of IDs we've accumulated.
16 public $ids = array();
19 * Builds an IDAccumulator, also initializing the default blacklist
20 * @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config
21 * @param HTMLPurifier_Context $context Instance of HTMLPurifier_Context
22 * @return HTMLPurifier_IDAccumulator Fully initialized HTMLPurifier_IDAccumulator
24 public static function build($config, $context)
26 $id_accumulator = new HTMLPurifier_IDAccumulator();
27 $id_accumulator->load($config->get('Attr.IDBlacklist'));
28 return $id_accumulator;
32 * Add an ID to the lookup table.
33 * @param string $id ID to be added.
34 * @return bool status, true if success, false if there's a dupe
36 public function add($id)
38 if (isset($this->ids
[$id])) {
41 return $this->ids
[$id] = true;
45 * Load a list of IDs into the lookup table
46 * @param $array_of_ids Array of IDs to load
47 * @note This function doesn't care about duplicates
49 public function load($array_of_ids)
51 foreach ($array_of_ids as $id) {
52 $this->ids
[$id] = true;