0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-20 03:05:18 +00:00
htmlpurifier/library/HTMLPurifier/AttrDef.php
2006-07-30 00:54:38 +00:00

13 lines
221 B
PHP

<?php
// AttrDef = Attribute Definition
class HTMLPurifier_AttrDef
{
function HTMLPurifier_AttrDef() {}
function validate() {
trigger_error('Cannot call abstract function', E_USER_ERROR);
}
}
?>