Release 2.0.1, merged in 1181 to HEAD.
[htmlpurifier.git] / library / HTMLPurifier / HTMLModule / CommonAttributes.php
blob7e291c4ac593a9bdd3ecec470147fd0de3303e72
1 <?php
3 require_once 'HTMLPurifier/HTMLModule.php';
5 class HTMLPurifier_HTMLModule_CommonAttributes extends HTMLPurifier_HTMLModule
7 var $name = 'CommonAttributes';
9 var $attr_collections = array(
10 'Core' => array(
11 0 => array('Style'),
12 // 'xml:space' => false,
13 'class' => 'NMTOKENS',
14 'id' => 'ID',
15 'title' => 'CDATA',
17 'Lang' => array(),
18 'I18N' => array(
19 0 => array('Lang'), // proprietary, for xml:lang/lang
21 'Common' => array(
22 0 => array('Core', 'I18N')