mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-23 00:41:52 +00:00
2a2d8cbd76
git-svn-id: http://htmlpurifier.org/svnroot/html_purifier/trunk@56 48356398-32a2-884e-a903-53898d9a118a
65 lines
1.3 KiB
PHP
65 lines
1.3 KiB
PHP
<?php
|
|
|
|
// MF = Markup Fragment
|
|
// all objects here are immutable
|
|
|
|
class MF {}
|
|
|
|
class MF_Tag extends MF // abstract
|
|
{
|
|
var $name;
|
|
function MF_Tag($name) {
|
|
$this->name = strtolower($name); // for some reason, the SAX parser
|
|
// uses uppercase. Investigate?
|
|
}
|
|
}
|
|
|
|
class MF_TagWithAttributes extends MF_Tag // abstract
|
|
{
|
|
var $attributes = array();
|
|
function MF_TagWithAttributes($name, $attributes = array()) {
|
|
$this->MF_Tag($name);
|
|
$this->attributes = $attributes;
|
|
}
|
|
}
|
|
|
|
class MF_StartTag extends MF_TagWithAttributes
|
|
{
|
|
var $type = 'start';
|
|
}
|
|
|
|
class MF_EmptyTag extends MF_TagWithAttributes
|
|
{
|
|
var $type = 'empty';
|
|
}
|
|
|
|
class MF_EndTag extends MF_Tag
|
|
{
|
|
var $type = 'end';
|
|
}
|
|
|
|
class MF_Text extends MF
|
|
{
|
|
var $name = '#PCDATA';
|
|
var $type = 'text';
|
|
var $data;
|
|
var $is_whitespace = false;
|
|
function MF_Text($data) {
|
|
$this->data = $data;
|
|
if (trim($data, " \n\r\t") === '') $this->is_whitespace = true;
|
|
}
|
|
function append($mf_text) {
|
|
return new MF_Text($this->data . $mf_text->data);
|
|
}
|
|
}
|
|
|
|
class MF_Comment extends MF
|
|
{
|
|
var $data;
|
|
var $type = 'comment';
|
|
function MF_Comment($data) {
|
|
$this->data = $data;
|
|
}
|
|
}
|
|
|
|
?>
|