mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
85374d330f
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@920 48356398-32a2-884e-a903-53898d9a118a
28 lines
659 B
PHP
28 lines
659 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrTransform.php';
|
|
|
|
/**
|
|
* Pre-transform that changes deprecated border attribute to CSS.
|
|
*/
|
|
class HTMLPurifier_AttrTransform_Border
|
|
extends HTMLPurifier_AttrTransform {
|
|
|
|
function transform($attr, $config, &$context) {
|
|
|
|
if (!isset($attr['border'])) return $attr;
|
|
|
|
$border_width = $attr['border'];
|
|
unset($attr['border']);
|
|
// some validation should happen here
|
|
|
|
$attr['style'] = isset($attr['style']) ? $attr['style'] : '';
|
|
$attr['style'] = "border:{$border_width}px solid;" . $attr['style'];
|
|
|
|
return $attr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|