mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
d8cb360f3b
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1589 48356398-32a2-884e-a903-53898d9a118a
20 lines
476 B
PHP
20 lines
476 B
PHP
<?php
|
|
|
|
/**
|
|
* Base validator for HTMLPurifier_ConfigSchema_Interchange
|
|
*/
|
|
class HTMLPurifier_ConfigSchema_Validator
|
|
{
|
|
|
|
/**
|
|
* Common validator, throwing an exception on error. It can
|
|
* also performing filtering or evaluation functions.
|
|
*
|
|
* @param $arr Array to validate.
|
|
* @param $interchange HTMLPurifier_ConfigSchema_Interchange object
|
|
* that is being processed.
|
|
*/
|
|
public function validate(&$arr, $interchange) {}
|
|
|
|
}
|