mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
e83573a3ad
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1608 48356398-32a2-884e-a903-53898d9a118a
19 lines
652 B
PHP
19 lines
652 B
PHP
<?php
|
|
|
|
/**
|
|
* Parses DEFAULT into _DEFAULT. Expects DEFAULT, _TYPE, _NULL and ID to exist.
|
|
*/
|
|
class HTMLPurifier_ConfigSchema_Validator_ParseDefault extends HTMLPurifier_ConfigSchema_Validator
|
|
{
|
|
|
|
public function validate(&$arr, $interchange) {
|
|
$parser = new HTMLPurifier_VarParser_Native(); // not configurable yet
|
|
try {
|
|
$arr['_DEFAULT'] = $parser->parse($arr['DEFAULT'], $arr['_TYPE'], $arr['_NULL']);
|
|
} catch (HTMLPurifier_VarParserException $e) {
|
|
throw new HTMLPurifier_ConfigSchema_Exception('Invalid type for default value in '. $arr['ID'] .': ' . $e->getMessage());
|
|
}
|
|
}
|
|
|
|
}
|