mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
a7fab00cdd
- Update TODO list - URISchemeRegistry doesn't return a reference for instance anymore, should do the same for other singletons git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1477 48356398-32a2-884e-a903-53898d9a118a
29 lines
748 B
PHP
29 lines
748 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrTransform.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;
|
|
}
|
|
|
|
}
|
|
|