ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ChildDef.php
Go to the documentation of this file.
1 <?php
2 
6 abstract class HTMLPurifier_ChildDef
7 {
13  public $type;
14 
22  public $allow_empty;
23 
28  public $elements = array();
29 
36  public function getAllowedElements($config)
37  {
38  return $this->elements;
39  }
40 
49  abstract public function validateChildren($children, $config, $context);
50 }
51 
52 // vim: et sw=4 sts=4