1<?php
2
3class HTMLPurifier_HTMLModule_XMLCommonAttributes extends HTMLPurifier_HTMLModule
4{
5    /**
6     * @type string
7     */
8    public $name = 'XMLCommonAttributes';
9
10    /**
11     * @type array
12     */
13    public $attr_collections = array(
14        'Lang' => array(
15            'xml:lang' => 'LanguageCode',
16        )
17    );
18}
19
20// vim: et sw=4 sts=4
21