2007-02-04 23:17:13 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Structure that stores an HTML element definition. Used by
|
|
|
|
* HTMLPurifier_HTMLDefinition and HTMLPurifier_HTMLModule.
|
|
|
|
*/
|
|
|
|
class HTMLPurifier_ElementDef
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Associative array of attribute name to HTMLPurifier_AttrDef
|
2007-02-09 03:19:43 +00:00
|
|
|
* @note Before being processed by HTMLPurifier_AttrCollections
|
|
|
|
* when modules are finalized during
|
|
|
|
* HTMLPurifier_HTMLDefinition->setup(), this array may also
|
|
|
|
* contain an array at index 0 that indicates which attribute
|
|
|
|
* collections to load into the full array. It may also
|
|
|
|
* contain string indentifiers in lieu of HTMLPurifier_AttrDef,
|
|
|
|
* see HTMLPurifier_AttrTypes on how they are expanded during
|
|
|
|
* HTMLPurifier_HTMLDefinition->setup() processing.
|
2007-02-04 23:17:13 +00:00
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $attr = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of tag's HTMLPurifier_AttrTransform to be done before validation
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $attr_transform_pre = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of tag's HTMLPurifier_AttrTransform to be done after validation
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $attr_transform_post = array();
|
|
|
|
|
2007-02-09 03:19:43 +00:00
|
|
|
|
2007-02-04 23:17:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* HTMLPurifier_ChildDef of this tag.
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $child;
|
|
|
|
|
|
|
|
/**
|
2007-02-09 03:19:43 +00:00
|
|
|
* Abstract string representation of internal ChildDef rules. See
|
|
|
|
* HTMLPurifier_ContentSets for how this is parsed and then transformed
|
|
|
|
* into an HTMLPurifier_ChildDef.
|
2007-02-04 23:17:13 +00:00
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $content_model;
|
|
|
|
|
|
|
|
/**
|
2007-02-09 03:19:43 +00:00
|
|
|
* Value of $child->type, used to determine which ChildDef to use,
|
|
|
|
* used in combination with $content_model.
|
2007-02-04 23:17:13 +00:00
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $content_model_type;
|
|
|
|
|
2007-02-09 03:19:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lookup table of tags that close this tag. Used during parsing
|
|
|
|
* to make sure we don't attempt to nest unclosed tags.
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $auto_close = array();
|
|
|
|
|
2007-02-04 23:17:13 +00:00
|
|
|
/**
|
|
|
|
* Does the element have a content model (#PCDATA | Inline)*? This
|
2007-02-09 03:19:43 +00:00
|
|
|
* is important for chameleon ins and del processing in
|
|
|
|
* HTMLPurifier_ChildDef_Chameleon.
|
2007-02-04 23:17:13 +00:00
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $descendants_are_inline;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lookup table of tags excluded from all descendants of this tag.
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $excludes = array();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|