mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
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;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|