You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NonXMLCommonAttributes.php 354B

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