2006-11-22 18:55:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Definition that disallows all elements.
|
|
|
|
* @warning validateChildren() in this class is actually never called, because
|
|
|
|
* empty elements are corrected in HTMLPurifier_Strategy_MakeWellFormed
|
|
|
|
* before child definitions are parsed in earnest by
|
|
|
|
* HTMLPurifier_Strategy_FixNesting.
|
|
|
|
*/
|
|
|
|
class HTMLPurifier_ChildDef_Empty extends HTMLPurifier_ChildDef
|
|
|
|
{
|
2007-11-25 02:24:39 +00:00
|
|
|
public $allow_empty = true;
|
|
|
|
public $type = 'empty';
|
2007-11-29 04:29:51 +00:00
|
|
|
public function __construct() {}
|
2008-01-05 00:10:43 +00:00
|
|
|
public function validateChildren($tokens_of_children, $config, $context) {
|
2006-11-22 18:55:15 +00:00
|
|
|
return array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|