2006-07-30 16:35:05 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once 'HTMLPurifier/AttrDef.php';
|
|
|
|
require_once 'HTMLPurifier/IDAccumulator.php';
|
|
|
|
|
|
|
|
class HTMLPurifier_AttrDef_ID extends HTMLPurifier_AttrDef
|
|
|
|
{
|
|
|
|
|
2006-08-01 01:57:22 +00:00
|
|
|
function validate($id, &$accumulator) {
|
2006-07-30 16:35:05 +00:00
|
|
|
|
|
|
|
$id = @ (string) $id; // sanity check
|
|
|
|
|
|
|
|
if ($id === '') return false;
|
|
|
|
if (isset($accumulator->ids[$id])) return false;
|
|
|
|
|
|
|
|
// we purposely avoid using regex, hopefully this is faster
|
|
|
|
|
|
|
|
if (ctype_alpha($id)) {
|
|
|
|
$result = true;
|
|
|
|
} else {
|
|
|
|
if (!ctype_alpha(@$id[0])) return false;
|
|
|
|
$trim = trim(
|
|
|
|
$id,
|
|
|
|
'A..Za..z0..9:-._'
|
|
|
|
);
|
|
|
|
$result = ($trim === '');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($result) $accumulator->add($id);
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|