您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
352B

  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