mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
21 lines
512 B
PHP
21 lines
512 B
PHP
|
<?php
|
||
|
|
||
|
require_once 'HTMLPurifier/HTMLModule.php';
|
||
|
|
||
|
/**
|
||
|
* XHTML 1.1 Edit Module, defines editing-related elements. Text Extension Module.
|
||
|
*/
|
||
|
class HTMLPurifier_HTMLModule_StyleAttribute extends HTMLPurifier_HTMLModule
|
||
|
{
|
||
|
var $attr_collection = array(
|
||
|
'Style' => array('style' => false),
|
||
|
'Core' => array(0 => array('Style'))
|
||
|
);
|
||
|
|
||
|
function HTMLPurifier_HTMLModule_StyleAttribute() {
|
||
|
$this->attr_collection['Style']['style'] = new HTMLPurifier_AttrDef_CSS();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|