File indexing completed on 2025-01-26 05:29:07
0001 <?php 0002 0003 class HTMLPurifier_HTMLModule_CommonAttributes extends HTMLPurifier_HTMLModule 0004 { 0005 /** 0006 * @type string 0007 */ 0008 public $name = 'CommonAttributes'; 0009 0010 /** 0011 * @type array 0012 */ 0013 public $attr_collections = array( 0014 'Core' => array( 0015 0 => array('Style'), 0016 // 'xml:space' => false, 0017 'class' => 'Class', 0018 'id' => 'ID', 0019 'title' => 'CDATA', 0020 ), 0021 'Lang' => array(), 0022 'I18N' => array( 0023 0 => array('Lang'), // proprietary, for xml:lang/lang 0024 ), 0025 'Common' => array( 0026 0 => array('Core', 'I18N') 0027 ) 0028 ); 0029 } 0030 0031 // vim: et sw=4 sts=4