mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
1102dc6e27
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@921 48356398-32a2-884e-a903-53898d9a118a
31 lines
615 B
PHP
31 lines
615 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrTransform.php';
|
|
|
|
/**
|
|
* Pre-transform that changes deprecated name attribute to ID if necessary
|
|
*/
|
|
class HTMLPurifier_AttrTransform_Name extends HTMLPurifier_AttrTransform
|
|
{
|
|
|
|
function transform($attr, $config, &$context) {
|
|
|
|
if (!isset($attr['name'])) return $attr;
|
|
|
|
$name = $attr['name'];
|
|
unset($attr['name']);
|
|
|
|
if (isset($attr['id'])) {
|
|
// ID already set, discard name
|
|
return $attr;
|
|
}
|
|
|
|
$attr['id'] = $name;
|
|
|
|
return $attr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|