mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
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);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|