2006-04-16 03:00:05 +00:00
|
|
|
<?php
|
|
|
|
|
2006-07-21 23:38:44 +00:00
|
|
|
class HTMLPurifier_Definition
|
2006-04-16 03:00:05 +00:00
|
|
|
{
|
|
|
|
|
2006-04-16 03:33:37 +00:00
|
|
|
var $generator;
|
2006-04-16 03:00:05 +00:00
|
|
|
var $info = array();
|
2006-04-16 19:34:28 +00:00
|
|
|
var $info_closes_p = array(
|
2006-04-16 21:06:08 +00:00
|
|
|
// these are all block elements: blocks aren't allowed in P
|
2006-04-16 19:34:28 +00:00
|
|
|
'address' => true,
|
|
|
|
'blockquote' => true,
|
|
|
|
'dd' => true,
|
|
|
|
'dir' => true,
|
|
|
|
'div' => true,
|
|
|
|
'dl' => true,
|
|
|
|
'dt' => true,
|
|
|
|
'h1' => true,
|
|
|
|
'h2' => true,
|
|
|
|
'h3' => true,
|
|
|
|
'h4' => true,
|
|
|
|
'h5' => true,
|
|
|
|
'h6' => true,
|
|
|
|
'hr' => true,
|
|
|
|
'ol' => true,
|
|
|
|
'p' => true,
|
|
|
|
'pre' => true,
|
|
|
|
'table' => true,
|
|
|
|
'ul' => true
|
|
|
|
);
|
2006-04-16 03:00:05 +00:00
|
|
|
|
2006-07-21 23:38:44 +00:00
|
|
|
function HTMLPurifier_Definition() {
|
2006-07-21 23:10:30 +00:00
|
|
|
$this->generator = new HTMLPurifier_Generator();
|
2006-04-16 03:00:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function loadData() {
|
|
|
|
// emulates the structure of the DTD
|
|
|
|
|
2006-04-16 16:50:51 +00:00
|
|
|
// entities: prefixed with e_ and _ replaces .
|
|
|
|
// we don't use an array because that complicates interpolation
|
|
|
|
// strings are used instead of arrays because if you use arrays,
|
|
|
|
// you have to do some hideous manipulation with array_merge()
|
|
|
|
|
|
|
|
// these are condensed, remember, with bad stuff taken out
|
|
|
|
|
|
|
|
// transforms: font, menu, dir, center
|
|
|
|
|
2006-07-20 00:30:35 +00:00
|
|
|
// DON'T MONKEY AROUND THIS unless you know what you are doing
|
|
|
|
// and also know the assumptions the code makes about what this
|
|
|
|
// contains for optimization purposes (see fixNesting)
|
|
|
|
|
2006-04-16 16:50:51 +00:00
|
|
|
$e_special_extra = 'img';
|
|
|
|
$e_special_basic = 'br | span | bdo';
|
|
|
|
$e_special = "$e_special_basic | $e_special_extra";
|
|
|
|
$e_fontstyle_extra = 'big | small';
|
|
|
|
$e_fontstyle_basic = 'tt | i | b | u | s | strike';
|
|
|
|
$e_fontstyle = "$e_fontstyle_basic | $e_fontstyle_extra";
|
|
|
|
$e_phrase_extra = 'sub | sup';
|
|
|
|
$e_phrase_basic = 'em | strong | dfn | code | q | samp | kbd | var'.
|
|
|
|
' | cite | abbr | acronym';
|
|
|
|
$e_phrase = "$e_phrase_basic | $e_phrase_extra";
|
|
|
|
$e_inline_forms = ''; // humor the dtd
|
|
|
|
$e_misc_inline = 'ins | del';
|
|
|
|
$e_misc = "$e_misc_inline";
|
|
|
|
$e_inline = "a | $e_special | $e_fontstyle | $e_phrase".
|
|
|
|
" | $e_inline_forms";
|
|
|
|
// note the casing
|
2006-07-21 23:38:44 +00:00
|
|
|
$e_Inline = new HTMLPurifier_ChildDef_Optional("#PCDATA | $e_inline".
|
2006-04-16 16:50:51 +00:00
|
|
|
" | $e_misc_inline");
|
|
|
|
$e_heading = 'h1|h2|h3|h4|h5|h6';
|
|
|
|
$e_lists = 'ul | ol | dl';
|
|
|
|
$e_blocktext = 'pre | hr | blockquote | address';
|
|
|
|
$e_block = "p | $e_heading | div | $e_lists | $e_blocktext | table";
|
2006-07-21 23:38:44 +00:00
|
|
|
$e_Flow = new HTMLPurifier_ChildDef_Optional("#PCDATA | $e_block".
|
2006-04-16 16:50:51 +00:00
|
|
|
" | $e_inline | $e_misc");
|
2006-07-21 23:38:44 +00:00
|
|
|
$e_a_content = new HTMLPurifier_ChildDef_Optional("#PCDATA | $e_special".
|
2006-04-16 16:50:51 +00:00
|
|
|
" | $e_fontstyle | $e_phrase | $e_inline_forms | $e_misc_inline");
|
2006-07-21 23:38:44 +00:00
|
|
|
$e_pre_content = new HTMLPurifier_ChildDef_Optional("#PCDATA | a".
|
2006-04-16 16:50:51 +00:00
|
|
|
" | $e_special_basic | $e_fontstyle_basic | $e_phrase_basic".
|
|
|
|
" | $e_inline_forms | $e_misc_inline");
|
2006-07-21 23:38:44 +00:00
|
|
|
$e_form_content = new HTMLPurifier_ChildDef_Optional(''); //unused
|
|
|
|
$e_form_button_content = new HTMLPurifier_ChildDef_Optional(''); // unused
|
2006-04-16 03:00:05 +00:00
|
|
|
|
|
|
|
$this->info['ins'] =
|
|
|
|
$this->info['del'] =
|
|
|
|
$this->info['blockquote'] =
|
|
|
|
$this->info['dd'] =
|
2006-04-16 19:34:28 +00:00
|
|
|
$this->info['li'] =
|
2006-07-22 00:02:48 +00:00
|
|
|
$this->info['div'] = new HTMLPurifier_ElementDef($e_Flow);
|
2006-04-16 03:00:05 +00:00
|
|
|
|
|
|
|
$this->info['em'] =
|
|
|
|
$this->info['strong'] =
|
|
|
|
$this->info['dfn'] =
|
|
|
|
$this->info['code'] =
|
|
|
|
$this->info['samp'] =
|
|
|
|
$this->info['kbd'] =
|
|
|
|
$this->info['var'] =
|
|
|
|
$this->info['code'] =
|
|
|
|
$this->info['samp'] =
|
|
|
|
$this->info['kbd'] =
|
|
|
|
$this->info['var'] =
|
|
|
|
$this->info['cite'] =
|
|
|
|
$this->info['abbr'] =
|
|
|
|
$this->info['acronym'] =
|
|
|
|
$this->info['q'] =
|
|
|
|
$this->info['sub'] =
|
|
|
|
$this->info['tt'] =
|
|
|
|
$this->info['sup'] =
|
|
|
|
$this->info['i'] =
|
|
|
|
$this->info['b'] =
|
|
|
|
$this->info['big'] =
|
|
|
|
$this->info['small'] =
|
|
|
|
$this->info['u'] =
|
|
|
|
$this->info['s'] =
|
|
|
|
$this->info['strike'] =
|
|
|
|
$this->info['bdo'] =
|
|
|
|
$this->info['span'] =
|
|
|
|
$this->info['dt'] =
|
|
|
|
$this->info['p'] =
|
|
|
|
$this->info['h1'] =
|
|
|
|
$this->info['h2'] =
|
|
|
|
$this->info['h3'] =
|
|
|
|
$this->info['h4'] =
|
|
|
|
$this->info['h5'] =
|
2006-07-22 00:02:48 +00:00
|
|
|
$this->info['h6'] = new HTMLPurifier_ElementDef($e_Inline);
|
2006-04-16 03:00:05 +00:00
|
|
|
|
|
|
|
$this->info['ol'] =
|
2006-04-16 16:50:51 +00:00
|
|
|
$this->info['ul'] =
|
2006-07-22 00:02:48 +00:00
|
|
|
new HTMLPurifier_ElementDef(
|
2006-07-21 23:38:44 +00:00
|
|
|
new HTMLPurifier_ChildDef_Required('li')
|
2006-04-16 16:50:51 +00:00
|
|
|
);
|
2006-04-16 03:00:05 +00:00
|
|
|
|
2006-04-16 16:50:51 +00:00
|
|
|
$this->info['dl'] =
|
2006-07-22 00:02:48 +00:00
|
|
|
new HTMLPurifier_ElementDef(
|
2006-07-21 23:38:44 +00:00
|
|
|
new HTMLPurifier_ChildDef_Required('dt|dd')
|
2006-04-16 16:50:51 +00:00
|
|
|
);
|
2006-04-16 03:00:05 +00:00
|
|
|
$this->info['address'] =
|
2006-07-22 00:02:48 +00:00
|
|
|
new HTMLPurifier_ElementDef(
|
2006-07-21 23:38:44 +00:00
|
|
|
new HTMLPurifier_ChildDef_Optional("#PCDATA | p | $e_inline".
|
2006-04-16 16:50:51 +00:00
|
|
|
" | $e_misc_inline")
|
|
|
|
);
|
2006-04-16 03:00:05 +00:00
|
|
|
|
|
|
|
$this->info['img'] =
|
|
|
|
$this->info['br'] =
|
2006-07-22 00:02:48 +00:00
|
|
|
$this->info['hr'] = new HTMLPurifier_ElementDef(new HTMLPurifier_ChildDef_Empty());
|
2006-04-16 03:00:05 +00:00
|
|
|
|
2006-07-22 00:02:48 +00:00
|
|
|
$this->info['pre'] = new HTMLPurifier_ElementDef($e_pre_content);
|
2006-04-16 16:50:51 +00:00
|
|
|
|
2006-07-22 00:02:48 +00:00
|
|
|
$this->info['a'] = new HTMLPurifier_ElementDef($e_a_content);
|
2006-04-16 03:00:05 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function purifyTokens($tokens) {
|
|
|
|
if (empty($this->info)) $this->loadData();
|
|
|
|
$tokens = $this->removeForeignElements($tokens);
|
|
|
|
$tokens = $this->makeWellFormed($tokens);
|
|
|
|
$tokens = $this->fixNesting($tokens);
|
|
|
|
$tokens = $this->validateAttributes($tokens);
|
|
|
|
return $tokens;
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeForeignElements($tokens) {
|
|
|
|
if (empty($this->info)) $this->loadData();
|
|
|
|
$result = array();
|
|
|
|
foreach($tokens as $token) {
|
2006-07-21 11:27:54 +00:00
|
|
|
if (!empty( $token->is_tag )) {
|
2006-04-16 03:33:37 +00:00
|
|
|
if (!isset($this->info[$token->name])) {
|
|
|
|
// invalid tag, generate HTML and insert in
|
2006-07-21 11:27:54 +00:00
|
|
|
$token = new HTMLPurifier_Token_Text(
|
2006-05-30 22:44:14 +00:00
|
|
|
$this->generator->generateFromToken($token)
|
|
|
|
);
|
2006-04-16 03:33:37 +00:00
|
|
|
}
|
2006-07-18 23:40:20 +00:00
|
|
|
} elseif ($token->type == 'comment') {
|
2006-04-16 03:00:05 +00:00
|
|
|
// strip comments
|
|
|
|
continue;
|
2006-07-18 23:40:20 +00:00
|
|
|
} elseif ($token->type == 'text') {
|
2006-04-16 03:00:05 +00:00
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$result[] = $token;
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
function makeWellFormed($tokens) {
|
|
|
|
if (empty($this->info)) $this->loadData();
|
2006-04-16 04:07:21 +00:00
|
|
|
$result = array();
|
|
|
|
$current_nesting = array();
|
|
|
|
foreach ($tokens as $token) {
|
2006-07-21 11:27:54 +00:00
|
|
|
if (empty( $token->is_tag )) {
|
2006-04-16 16:50:51 +00:00
|
|
|
$result[] = $token;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$info = $this->info[$token->name]; // assumption but valid
|
|
|
|
|
2006-04-16 04:07:21 +00:00
|
|
|
// test if it claims to be a start tag but is empty
|
2006-07-18 23:40:20 +00:00
|
|
|
if ($info->child_def->type == 'empty' &&
|
|
|
|
$token->type == 'start' ) {
|
2006-04-16 16:50:51 +00:00
|
|
|
|
2006-07-21 11:27:54 +00:00
|
|
|
$result[] = new HTMLPurifier_Token_Empty($token->name,
|
|
|
|
$token->attributes);
|
2006-04-16 16:50:51 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// test if it claims to be empty but really is a start tag
|
2006-07-18 23:40:20 +00:00
|
|
|
if ($info->child_def->type != 'empty' &&
|
|
|
|
$token->type == 'empty' ) {
|
2006-04-16 16:50:51 +00:00
|
|
|
|
2006-07-21 11:27:54 +00:00
|
|
|
$result[] = new HTMLPurifier_Token_Start($token->name,
|
|
|
|
$token->attributes);
|
|
|
|
$result[] = new HTMLPurifier_Token_End($token->name);
|
2006-04-16 16:50:51 +00:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// automatically insert empty tags
|
2006-07-18 23:40:20 +00:00
|
|
|
if ($token->type == 'empty') {
|
2006-04-16 16:50:51 +00:00
|
|
|
$result[] = $token;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-04-16 19:34:28 +00:00
|
|
|
// we give start tags precedence, so automatically accept unless...
|
|
|
|
// it's one of those special cases
|
2006-07-18 23:40:20 +00:00
|
|
|
if ($token->type == 'start') {
|
2006-04-16 19:34:28 +00:00
|
|
|
|
|
|
|
// if there's a parent, check for special case
|
|
|
|
if (!empty($current_nesting)) {
|
|
|
|
$current_parent = array_pop($current_nesting);
|
|
|
|
|
|
|
|
// check if we're closing a P tag
|
|
|
|
if ($current_parent->name == 'p' &&
|
|
|
|
isset($this->info_closes_p[$token->name])
|
|
|
|
) {
|
2006-07-21 11:27:54 +00:00
|
|
|
$result[] = new HTMLPurifier_Token_End('p');
|
2006-04-16 19:34:28 +00:00
|
|
|
$result[] = $token;
|
|
|
|
$current_nesting[] = $token;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if we're closing a LI tag
|
|
|
|
if ($current_parent->name == 'li' &&
|
|
|
|
$token->name == 'li'
|
|
|
|
) {
|
2006-07-21 11:27:54 +00:00
|
|
|
$result[] = new HTMLPurifier_Token_End('li');
|
2006-04-16 19:34:28 +00:00
|
|
|
$result[] = $token;
|
|
|
|
$current_nesting[] = $token;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-04-16 21:06:08 +00:00
|
|
|
// this is more TIDY stuff
|
|
|
|
// we should also get some TABLE related code
|
|
|
|
// mismatched h#
|
|
|
|
|
2006-04-16 19:34:28 +00:00
|
|
|
$current_nesting[] = $current_parent; // undo the pop
|
|
|
|
}
|
|
|
|
|
2006-04-16 16:50:51 +00:00
|
|
|
$result[] = $token;
|
|
|
|
$current_nesting[] = $token;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// sanity check
|
2006-07-18 23:40:20 +00:00
|
|
|
if ($token->type != 'end') continue;
|
2006-04-16 16:50:51 +00:00
|
|
|
|
|
|
|
// okay, we're dealing with a closing tag
|
|
|
|
|
|
|
|
// make sure that we have something open
|
|
|
|
if (empty($current_nesting)) {
|
2006-07-21 11:27:54 +00:00
|
|
|
$result[] = new HTMLPurifier_Token_Text(
|
2006-05-30 22:44:14 +00:00
|
|
|
$this->generator->generateFromToken($token)
|
|
|
|
);
|
2006-04-16 16:50:51 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// first, check for the simplest case: everything closes neatly
|
|
|
|
|
|
|
|
// current_nesting is modified
|
|
|
|
$current_parent = array_pop($current_nesting);
|
|
|
|
if ($current_parent->name == $token->name) {
|
|
|
|
$result[] = $token;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// undo the array_pop
|
|
|
|
$current_nesting[] = $current_parent;
|
|
|
|
|
|
|
|
// okay, so we're trying to close the wrong tag
|
|
|
|
|
|
|
|
// scroll back the entire nest, trying to find our tag
|
|
|
|
// feature could be to specify how far you'd like to go
|
|
|
|
$size = count($current_nesting);
|
|
|
|
// -2 because -1 is the last element, but we already checked that
|
|
|
|
$skipped_tags = false;
|
|
|
|
for ($i = $size - 2; $i >= 0; $i--) {
|
|
|
|
if ($current_nesting[$i]->name == $token->name) {
|
|
|
|
// current nesting is modified
|
|
|
|
$skipped_tags = array_splice($current_nesting, $i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// we still didn't find the tag, so translate to text
|
|
|
|
if ($skipped_tags === false) {
|
2006-07-21 11:27:54 +00:00
|
|
|
$result[] = new HTMLPurifier_Token_Text(
|
2006-05-30 22:44:14 +00:00
|
|
|
$this->generator->generateFromToken($token)
|
|
|
|
);
|
2006-04-16 16:50:51 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// okay, we found it, close all the skipped tags
|
|
|
|
// note that skipped tags contains the element we need closed
|
|
|
|
$size = count($skipped_tags);
|
|
|
|
for ($i = $size - 1; $i >= 0; $i--) {
|
2006-07-21 11:27:54 +00:00
|
|
|
$result[] = new HTMLPurifier_Token_End($skipped_tags[$i]->name);
|
2006-04-16 16:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// done!
|
|
|
|
|
2006-04-16 04:07:21 +00:00
|
|
|
}
|
2006-04-16 16:50:51 +00:00
|
|
|
|
|
|
|
// we're at the end now, fix all still unclosed tags
|
|
|
|
|
|
|
|
if (!empty($current_nesting)) {
|
|
|
|
$size = count($current_nesting);
|
|
|
|
for ($i = $size - 1; $i >= 0; $i--) {
|
2006-07-21 11:27:54 +00:00
|
|
|
$result[] =
|
|
|
|
new HTMLPurifier_Token_End($current_nesting[$i]->name);
|
2006-04-16 16:50:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
2006-04-16 03:00:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function fixNesting($tokens) {
|
|
|
|
if (empty($this->info)) $this->loadData();
|
|
|
|
|
2006-07-19 00:21:21 +00:00
|
|
|
// insert implicit "parent" node, will be removed at end
|
2006-07-21 11:27:54 +00:00
|
|
|
array_unshift($tokens, new HTMLPurifier_Token_Start('div'));
|
|
|
|
$tokens[] = new HTMLPurifier_Token_End('div');
|
2006-07-18 23:40:20 +00:00
|
|
|
|
2006-07-19 00:21:21 +00:00
|
|
|
for ($i = 0, $size = count($tokens) ; $i < $size; ) {
|
|
|
|
|
|
|
|
$child_tokens = array();
|
2006-07-18 23:40:20 +00:00
|
|
|
|
|
|
|
// scroll to the end of this node, and report number
|
|
|
|
for ($j = $i, $depth = 0; ; $j++) {
|
2006-07-19 00:21:21 +00:00
|
|
|
if ($tokens[$j]->type == 'start') {
|
|
|
|
$depth++;
|
2006-07-20 00:30:35 +00:00
|
|
|
// skip token assignment on first iteration
|
2006-07-19 00:21:21 +00:00
|
|
|
if ($depth == 1) continue;
|
|
|
|
} elseif ($tokens[$j]->type == 'end') {
|
|
|
|
$depth--;
|
2006-07-20 00:30:35 +00:00
|
|
|
// skip token assignment on last iteration
|
2006-07-19 00:21:21 +00:00
|
|
|
if ($depth == 0) break;
|
|
|
|
}
|
|
|
|
$child_tokens[] = $tokens[$j];
|
2006-07-18 23:40:20 +00:00
|
|
|
}
|
2006-07-19 00:21:21 +00:00
|
|
|
|
2006-07-20 00:30:35 +00:00
|
|
|
// $i is index of start token
|
|
|
|
// $j is index of end token
|
|
|
|
|
2006-07-19 00:21:21 +00:00
|
|
|
// have DTD child def validate children
|
|
|
|
$element_def = $this->info[$tokens[$i]->name];
|
|
|
|
$result = $element_def->child_def->validateChildren($child_tokens);
|
|
|
|
|
|
|
|
// process result
|
|
|
|
if ($result === true) {
|
|
|
|
|
2006-07-20 00:30:35 +00:00
|
|
|
// leave the nodes as is
|
|
|
|
|
|
|
|
} elseif($result === false) {
|
|
|
|
|
|
|
|
// WARNING WARNING WARNING!!!
|
|
|
|
// While for the original DTD, there will never be
|
|
|
|
// cascading removal, more complex ones may have such
|
|
|
|
// a problem.
|
|
|
|
|
|
|
|
// If you modify the info array such that an element
|
|
|
|
// that requires children may contain a child that requires
|
|
|
|
// children, you need to also scroll back and re-check that
|
|
|
|
// elements parent node
|
|
|
|
|
|
|
|
$length = $j - $i + 1;
|
|
|
|
|
|
|
|
// remove entire node
|
|
|
|
array_splice($tokens, $i, $length);
|
|
|
|
|
|
|
|
// change size
|
|
|
|
$size -= $length;
|
|
|
|
|
|
|
|
// ensure that we scroll to the next node
|
|
|
|
$i--;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$length = $j - $i - 1;
|
|
|
|
|
|
|
|
// replace node with $result
|
|
|
|
array_splice($tokens, $i + 1, $length, $result);
|
|
|
|
|
|
|
|
// change size
|
|
|
|
$size -= $length;
|
|
|
|
$size += count($result);
|
2006-07-19 00:21:21 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-07-20 00:30:35 +00:00
|
|
|
// scroll to next node
|
|
|
|
$i++;
|
|
|
|
while ($i < $size and $tokens[$i]->type != 'start') $i++;
|
|
|
|
|
2006-07-19 00:21:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// remove implicit divs
|
|
|
|
array_shift($tokens);
|
|
|
|
array_pop($tokens);
|
|
|
|
|
|
|
|
return $tokens;
|
2006-07-18 23:40:20 +00:00
|
|
|
|
2006-04-16 03:00:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function validateAttributes($tokens) {
|
|
|
|
if (empty($this->info)) $this->loadData();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-07-22 00:02:48 +00:00
|
|
|
class HTMLPurifier_ElementDef
|
2006-04-16 04:07:21 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
var $child_def;
|
|
|
|
var $attr_def = array();
|
|
|
|
|
2006-07-22 00:02:48 +00:00
|
|
|
function HTMLPurifier_ElementDef($child_def, $attr_def = array()) {
|
2006-04-16 16:50:51 +00:00
|
|
|
$this->child_def = $child_def;
|
|
|
|
$this->attr_def = $attr_def;
|
|
|
|
}
|
2006-04-16 04:07:21 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-04-16 03:00:05 +00:00
|
|
|
?>
|