1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-07-31 11:20:13 +02:00

Factor out content set and childdef functionality to ContentSets. Remove redundant info suffix from attr_collections.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@725 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang
2007-02-05 03:05:46 +00:00
parent 219902ebff
commit e2103ce0f2
5 changed files with 592 additions and 566 deletions

View File

@@ -9,7 +9,7 @@ require_once 'HTMLPurifier/AttrDef/CSS.php';
*/
class HTMLPurifier_HTMLModule_StyleAttribute extends HTMLPurifier_HTMLModule
{
var $attr_collections_info = array(
var $attr_collections = array(
// The inclusion routine differs from the Abstract Modules but
// is in line with the DTD and XML Schemas.
'Style' => array('style' => false), // see constructor
@@ -17,7 +17,7 @@ class HTMLPurifier_HTMLModule_StyleAttribute extends HTMLPurifier_HTMLModule
);
function HTMLPurifier_HTMLModule_StyleAttribute() {
$this->attr_collections_info['Style']['style'] = new HTMLPurifier_AttrDef_CSS();
$this->attr_collections['Style']['style'] = new HTMLPurifier_AttrDef_CSS();
}
}