HTMLPurifier 4.4.0
/home/ezyang/Dev/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php
Go to the documentation of this file.
00001 <?php
00002 
00010 class HTMLPurifier_ChildDef_Empty extends HTMLPurifier_ChildDef
00011 {
00012     public $allow_empty = true;
00013     public $type = 'empty';
00014     public function __construct() {}
00015     public function validateChildren($tokens_of_children, $config, $context) {
00016         return array();
00017     }
00018 }
00019 
00020 // vim: et sw=4 sts=4