CommonAttributes.php 600 B

1234567891011121314151617181920212223242526
  1. <?php
  2. class HTMLPurifier_HTMLModule_CommonAttributes extends HTMLPurifier_HTMLModule
  3. {
  4. public $name = 'CommonAttributes';
  5. public $attr_collections = array(
  6. 'Core' => array(
  7. 0 => array('Style'),
  8. // 'xml:space' => false,
  9. 'class' => 'Class',
  10. 'id' => 'ID',
  11. 'title' => 'CDATA',
  12. ),
  13. 'Lang' => array(),
  14. 'I18N' => array(
  15. 0 => array('Lang'), // proprietary, for xml:lang/lang
  16. ),
  17. 'Common' => array(
  18. 0 => array('Core', 'I18N')
  19. )
  20. );
  21. }
  22. // vim: et sw=4 sts=4