mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
d81bcbd208
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1586 48356398-32a2-884e-a903-53898d9a118a
16 lines
371 B
PHP
16 lines
371 B
PHP
<?php
|
|
|
|
/**
|
|
* Validates that an ID field exists in the array
|
|
*/
|
|
class HTMLPurifier_ConfigSchema_Validator_IdExists extends HTMLPurifier_ConfigSchema_Validator
|
|
{
|
|
|
|
public function validate(&$arr, $interchange, $type) {
|
|
if (!isset($arr['ID'])) {
|
|
throw new HTMLPurifier_ConfigSchema_Exception('ID must exist in ' . $type);
|
|
}
|
|
}
|
|
|
|
}
|