HTMLPurifier_HTMLModule_NonXMLCommonAttributes
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 13
c 0
b 0
f 0
1
<?php
2
3
class HTMLPurifier_HTMLModule_NonXMLCommonAttributes extends HTMLPurifier_HTMLModule
4
{
5
    /**
6
     * @type string
7
     */
8
    public $name = 'NonXMLCommonAttributes';
9
10
    /**
11
     * @type array
12
     */
13
    public $attr_collections = array(
14
        'Lang' => array(
15
            'lang' => 'LanguageCode',
16
        )
17
    );
18
}
19
20
// vim: et sw=4 sts=4
21