123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- class HTMLPurifier_ChildDef_Empty extends HTMLPurifier_ChildDef
- {
-
- public $allow_empty = true;
-
- public $type = 'empty';
- public function __construct()
- {
- }
-
- public function validateChildren($children, $config, $context)
- {
- return array();
- }
- }
|