Whoops, forgot to edit WHATSNEW
[htmlpurifier.git] / library / HTMLPurifier / HTMLModule / CommonAttributes.php
bloba96ab1bef11864c43ee55ba22ffce2c7b21fa6d1
1 <?php
3 class HTMLPurifier_HTMLModule_CommonAttributes extends HTMLPurifier_HTMLModule
5 /**
6 * @type string
7 */
8 public $name = 'CommonAttributes';
10 /**
11 * @type array
13 public $attr_collections = array(
14 'Core' => array(
15 0 => array('Style'),
16 // 'xml:space' => false,
17 'class' => 'Class',
18 'id' => 'ID',
19 'title' => 'CDATA',
21 'Lang' => array(),
22 'I18N' => array(
23 0 => array('Lang'), // proprietary, for xml:lang/lang
25 'Common' => array(
26 0 => array('Core', 'I18N')
31 // vim: et sw=4 sts=4