mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 16:31:53 +00:00
dad395ac45
git-svn-id: http://htmlpurifier.org/svnroot/html_purifier/trunk@22 48356398-32a2-884e-a903-53898d9a118a
50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
// MF = Markup Fragment
|
|
// all objects here are immutable
|
|
|
|
class MF {}
|
|
|
|
class MF_Tag extends MF
|
|
{
|
|
var $name;
|
|
function MF_Tag($name) {
|
|
$this->name = strtolower($name); // for some reason, the SAX parser
|
|
// uses uppercase. Investigate?
|
|
}
|
|
}
|
|
|
|
class MF_StartTag extends MF_Tag
|
|
{
|
|
var $attributes = array();
|
|
function MF_StartTag($type, $attributes = array()) {
|
|
$this->MF_Tag($type);
|
|
$this->attributes = $attributes;
|
|
}
|
|
}
|
|
|
|
class MF_EmptyTag extends MF_StartTag {}
|
|
class MF_EndTag extends MF_Tag {}
|
|
|
|
class MF_Text extends MF
|
|
{
|
|
var $name = '#PCDATA';
|
|
var $data;
|
|
function MF_Text($data) {
|
|
$this->data = trim($data); // fairly certain trimming it's okay
|
|
// but it's not default SAX behavior
|
|
}
|
|
function append($mf_text) {
|
|
return new MF_Text($this->data . $mf_text->data);
|
|
}
|
|
}
|
|
|
|
class MF_Comment extends MF
|
|
{
|
|
var $data;
|
|
function MF_Comment($data) {
|
|
$this->data = $data;
|
|
}
|
|
}
|
|
|
|
?>
|