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
89 lines
3.4 KiB
PHP
89 lines
3.4 KiB
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/HTMLModule.php';
|
|
require_once 'HTMLPurifier/ChildDef/Table.php';
|
|
|
|
/**
|
|
* XHTML 1.1 Tables Module, fully defines accessible table elements.
|
|
*/
|
|
class HTMLPurifier_HTMLModule_Tables extends HTMLPurifier_HTMLModule
|
|
{
|
|
|
|
var $name = 'Tables';
|
|
var $type = 'define';
|
|
var $elements = array('caption', 'table', 'td', 'th', 'tr', 'col',
|
|
'colgroup', 'tbody', 'thead', 'tfoot');
|
|
var $info = array();
|
|
var $content_sets = array('Block' => 'table');
|
|
|
|
function HTMLPurifier_HTMLModule_Tables() {
|
|
foreach ($this->elements as $e) {
|
|
$this->info[$e] = new HTMLPurifier_ElementDef();
|
|
$this->info[$e]->attr = array(0 => array('Common'));
|
|
$attr =& $this->info[$e]->attr;
|
|
if ($e == 'caption') continue;
|
|
if ($e == 'table'){
|
|
$attr['border'] = 'Pixels';
|
|
$attr['cellpadding'] = 'Length';
|
|
$attr['cellspacing'] = 'Length';
|
|
$attr['frame'] = new HTMLPurifier_AttrDef_Enum(array(
|
|
'void', 'above', 'below', 'hsides', 'lhs', 'rhs',
|
|
'vsides', 'box', 'border'
|
|
), false);
|
|
$attr['rules'] = new HTMLPurifier_AttrDef_Enum(array(
|
|
'none', 'groups', 'rows', 'cols', 'all'
|
|
), false);
|
|
$attr['summary'] = 'Text';
|
|
$attr['width'] = 'Length';
|
|
continue;
|
|
}
|
|
if ($e == 'col' || $e == 'colgroup') {
|
|
$attr['span'] = 'Number';
|
|
$attr['width'] = 'MultiLength';
|
|
}
|
|
if ($e == 'td' || $e == 'th') {
|
|
$attr['abbr'] = 'Text';
|
|
$attr['colspan'] = 'Number';
|
|
$attr['rowspan'] = 'Number';
|
|
}
|
|
$attr['align'] = new HTMLPurifier_AttrDef_Enum(array(
|
|
'left', 'center', 'right', 'justify', 'char'
|
|
), false);
|
|
$attr['valign'] = new HTMLPurifier_AttrDef_Enum(array(
|
|
'top', 'middle', 'bottom', 'baseline'
|
|
), false);
|
|
$attr['charoff'] = 'Length';
|
|
}
|
|
$this->info['caption']->content_model = '#PCDATA | Inline';
|
|
$this->info['caption']->content_model_type = 'optional';
|
|
|
|
// Is done directly because it doesn't leverage substitution
|
|
// mechanisms. True model is:
|
|
// 'caption?, ( col* | colgroup* ), (( thead?, tfoot?, tbody+ ) | ( tr+ ))'
|
|
$this->info['table']->child = new HTMLPurifier_ChildDef_Table();
|
|
|
|
$this->info['td']->content_model =
|
|
$this->info['th']->content_model = '#PCDATA | Flow';
|
|
$this->info['td']->content_model_type =
|
|
$this->info['th']->content_model_type = 'optional';
|
|
|
|
$this->info['tr']->content_model = 'td | th';
|
|
$this->info['tr']->content_model_type = 'required';
|
|
|
|
$this->info['col']->content_model_type = 'empty';
|
|
|
|
$this->info['colgroup']->content_model = 'col';
|
|
$this->info['colgroup']->content_model_type = 'optional';
|
|
|
|
$this->info['tbody']->content_model =
|
|
$this->info['thead']->content_model =
|
|
$this->info['tfoot']->content_model = 'tr';
|
|
$this->info['tbody']->content_model_type =
|
|
$this->info['thead']->content_model_type =
|
|
$this->info['tfoot']->content_model_type = 'required';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|