mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
8a23710405
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@162 48356398-32a2-884e-a903-53898d9a118a
14 lines
327 B
PHP
14 lines
327 B
PHP
<?php
|
|
|
|
// AttrTransform = Attribute Transformation, when handling one attribute
|
|
// isn't enough
|
|
class HTMLPurifier_AttrTransform
|
|
{
|
|
function HTMLPurifier_AttrTransform() {}
|
|
|
|
function transform($token, $config = null) {
|
|
trigger_error('Cannot call abstract function', E_USER_ERROR);
|
|
}
|
|
}
|
|
|
|
?>
|