XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
ChildDef.php
Go to the documentation of this file.
1 <?php
2 
6 abstract class HTMLPurifier_ChildDef
7 {
12  public $type;
13 
20  public $allow_empty;
21 
25  public $elements = array();
26 
31  public function getAllowedElements($config) {
32  return $this->elements;
33  }
34 
45  abstract public function validateChildren($tokens_of_children, $config, $context);
46 }
47 
48 // vim: et sw=4 sts=4