diff options
Diffstat (limited to 'lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Background.php')
-rw-r--r-- | lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Background.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Background.php b/lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Background.php deleted file mode 100644 index 0e1ff24a3..000000000 --- a/lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Background.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -/** - * Pre-transform that changes proprietary background attribute to CSS. - */ -class HTMLPurifier_AttrTransform_Background extends HTMLPurifier_AttrTransform { - - public function transform($attr, $config, $context) { - - if (!isset($attr['background'])) return $attr; - - $background = $this->confiscateAttr($attr, 'background'); - // some validation should happen here - - $this->prependCSS($attr, "background-image:url($background);"); - - return $attr; - - } - -} - -// vim: et sw=4 sts=4 |