00001 <?php 00002 00006 abstract class HTMLPurifier_ChildDef 00007 { 00012 public $type; 00013 00020 public $allow_empty; 00021 00025 public $elements = array(); 00026 00037 abstract public function validateChildren($tokens_of_children, $config, $context); 00038 } 00039 00040
1.5.3