mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
a2880bdff2
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@212 48356398-32a2-884e-a903-53898d9a118a
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;
|
|
}
|
|
|
|
?>
|