/plugins/html_purifier/htmlpurifier-4.0.0/library/HTMLPurifier/AttrTransform/Length.php
http://0byte.googlecode.com/ · PHP · 27 lines · 17 code · 6 blank · 4 comment · 2 complexity · 5c92f8e7a6d136271e6c7901c3ad4c5a MD5 · raw file
- <?php
-
- /**
- * Class for handling width/height length attribute transformations to CSS
- */
- class HTMLPurifier_AttrTransform_Length extends HTMLPurifier_AttrTransform
- {
-
- protected $name;
- protected $cssName;
-
- public function __construct($name, $css_name = null) {
- $this->name = $name;
- $this->cssName = $css_name ? $css_name : $name;
- }
-
- public function transform($attr, $config, $context) {
- if (!isset($attr[$this->name])) return $attr;
- $length = $this->confiscateAttr($attr, $this->name);
- if(ctype_digit($length)) $length .= 'px';
- $this->prependCSS($attr, $this->cssName . ":$length;");
- return $attr;
- }
-
- }
-
- // vim: et sw=4 sts=4