mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
15 lines
271 B
PHP
15 lines
271 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Internal data-structure used in attribute validation to accumulate state.
|
||
|
*
|
||
|
* All it is is a data-structure that holds objects that accumulate state, like
|
||
|
* HTMLPurifier_IDAccumulator.
|
||
|
*/
|
||
|
|
||
|
class HTMLPurifier_AttrContext
|
||
|
{
|
||
|
var $id_accumulator;
|
||
|
}
|
||
|
|
||
|
?>
|