1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-06 14:16:32 +02:00

Add AttrDef_Id, as well as amend the accumulator by adding a load.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@131 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang
2006-07-30 16:35:05 +00:00
parent bba0d0b77a
commit bb0435bdd4
5 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?php
require_once 'HTMLPurifier/AttrDef.php';
require_once 'HTMLPurifier/IDAccumulator.php';
class HTMLPurifier_AttrDef_ID extends HTMLPurifier_AttrDef
{
function validate($id, $accumulator) {
$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;
}
}
?>

View File

@@ -10,6 +10,12 @@ class HTMLPurifier_IDAccumulator
return $this->ids[$id] = true;
}
function load($array_of_ids) {
foreach ($array_of_ids as $id) {
$this->ids[$id] = true;
}
}
}
?>