4 * Defines allowed child nodes and validates nodes against it.
6 abstract class HTMLPurifier_ChildDef
9 * Type of child definition, usually right-most part of class name lowercase.
10 * Used occasionally in terms of context.
16 * Indicates whether or not an empty array of children is okay.
18 * This is necessary for redundant checking when changes affecting
19 * a child node may cause a parent node to now be disallowed.
25 * Lookup array of all elements that this definition could possibly allow.
28 public $elements = array();
31 * Get lookup of tag names that should not close this element automatically.
32 * All other elements will do so.
33 * @param HTMLPurifier_Config $config HTMLPurifier_Config object
36 public function getAllowedElements($config)
38 return $this->elements
;
42 * Validates nodes according to definition and returns modification.
44 * @param HTMLPurifier_Node[] $children Array of HTMLPurifier_Node
45 * @param HTMLPurifier_Config $config HTMLPurifier_Config object
46 * @param HTMLPurifier_Context $context HTMLPurifier_Context object
47 * @return bool|array true to leave nodes as is, false to remove parent node, array of replacement children
49 abstract public function validateChildren($children, $config, $context);