XMLCommonAttributes.php 352 B

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