mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
e55babdc53
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@753 48356398-32a2-884e-a903-53898d9a118a
42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/HTMLModule.php';
|
|
|
|
/**
|
|
* XHTML 1.1 Presentation Module, defines simple presentation-related
|
|
* markup. Text Extension Module.
|
|
* @note The official XML Schema and DTD specs further divide this into
|
|
* two modules:
|
|
* - Block Presentation (hr)
|
|
* - Inline Presentation (b, big, i, small, sub, sup, tt)
|
|
* We have chosen not to heed this distinction, as content_sets
|
|
* provides satisfactory disambiguation.
|
|
*/
|
|
class HTMLPurifier_HTMLModule_Presentation extends HTMLPurifier_HTMLModule
|
|
{
|
|
|
|
var $name = 'Presentation';
|
|
var $type = 'define';
|
|
var $elements = array('b', 'big', 'hr', 'i', 'small', 'sub', 'sup', 'tt');
|
|
var $info = array();
|
|
var $content_sets = array(
|
|
'Block' => 'hr',
|
|
'Inline' => 'b | big | i | small | sub | sup | tt'
|
|
);
|
|
|
|
function HTMLPurifier_HTMLModule_Presentation() {
|
|
foreach ($this->elements as $element) {
|
|
$this->info[$element] = new HTMLPurifier_ElementDef();
|
|
$this->info[$element]->attr = array(0 => array('Common'));
|
|
if ($element == 'hr') {
|
|
$this->info[$element]->content_model_type = 'empty';
|
|
} else {
|
|
$this->info[$element]->content_model = '#PCDATA | Inline';
|
|
$this->info[$element]->content_model_type = 'optional';
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
?>
|