2010-09-08 23:14:17 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class HTMLPurifier_HTMLModule_XMLCommonAttributes extends HTMLPurifier_HTMLModule
|
|
|
|
{
|
2016-02-09 05:06:17 -05:00
|
|
|
/**
|
|
|
|
* @type string
|
|
|
|
*/
|
2010-09-08 23:14:17 -04:00
|
|
|
public $name = 'XMLCommonAttributes';
|
|
|
|
|
2016-02-09 05:06:17 -05:00
|
|
|
/**
|
|
|
|
* @type array
|
|
|
|
*/
|
2010-09-08 23:14:17 -04:00
|
|
|
public $attr_collections = array(
|
|
|
|
'Lang' => array(
|
|
|
|
'xml:lang' => 'LanguageCode',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// vim: et sw=4 sts=4
|