Automatic installer.php lang files by installer_builder (20070726)
[moodle-linuxchix.git] / lib / htmlpurifier / HTMLPurifier / HTMLModule / CommonAttributes.php
blob8f17c2f0a39a97792f1b838809f0552efbc00c06
1 <?php
3 class HTMLPurifier_HTMLModule_CommonAttributes extends HTMLPurifier_HTMLModule
5 var $name = 'CommonAttributes';
7 var $attr_collections = array(
8 'Core' => array(
9 0 => array('Style'),
10 // 'xml:space' => false,
11 'class' => 'NMTOKENS',
12 'id' => 'ID',
13 'title' => 'CDATA',
15 'Lang' => array(
16 'xml:lang' => false, // see constructor
18 'I18N' => array(
19 0 => array('Lang'), // proprietary, for xml:lang/lang
21 'Common' => array(
22 0 => array('Core', 'I18N')
26 function HTMLPurifier_HTMLModule_CommonAttributes() {
27 $this->attr_collections['Lang']['xml:lang'] = new HTMLPurifier_AttrDef_Lang();