X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/htmlpurifier/HTMLPurifier/HTMLModule
home
/
cbholdings
/
pasukulu
/
lib
/
htmlpurifier
/
HTMLPurifier
/
HTMLModule
/
📁
..
📄
Bdo.php
(1 KB)
📄
CommonAttributes.php
(722 B)
📄
Edit.php
(1.4 KB)
📄
Forms.php
(5.7 KB)
📄
Hypertext.php
(996 B)
📄
Iframe.php
(1.15 KB)
📄
Image.php
(1.36 KB)
📄
Legacy.php
(5.72 KB)
📄
List.php
(1.86 KB)
📄
Name.php
(669 B)
📄
Nofollow.php
(507 B)
📄
NonXMLCommonAttributes.php
(354 B)
📄
Object.php
(1.49 KB)
📄
Presentation.php
(1.38 KB)
📄
Proprietary.php
(995 B)
📄
Ruby.php
(1.03 KB)
📄
SafeEmbed.php
(1.07 KB)
📄
SafeObject.php
(1.9 KB)
📄
SafeScripting.php
(1.23 KB)
📄
Scripting.php
(2.28 KB)
📄
StyleAttribute.php
(780 B)
📄
Tables.php
(2.3 KB)
📄
Target.php
(599 B)
📄
TargetBlank.php
(522 B)
📄
TargetNoopener.php
(516 B)
📄
TargetNoreferrer.php
(526 B)
📄
Text.php
(3.35 KB)
📁
Tidy
📄
Tidy.php
(7.05 KB)
📄
XMLCommonAttributes.php
(352 B)
Editing: Tables.php
<?php /** * XHTML 1.1 Tables Module, fully defines accessible table elements. */ class HTMLPurifier_HTMLModule_Tables extends HTMLPurifier_HTMLModule { /** * @type string */ public $name = 'Tables'; /** * @param HTMLPurifier_Config $config */ public function setup($config) { $this->addElement('caption', false, 'Inline', 'Common'); $this->addElement( 'table', 'Block', new HTMLPurifier_ChildDef_Table(), 'Common', array( 'border' => 'Pixels', 'cellpadding' => 'Length', 'cellspacing' => 'Length', 'frame' => 'Enum#void,above,below,hsides,lhs,rhs,vsides,box,border', 'rules' => 'Enum#none,groups,rows,cols,all', 'summary' => 'Text', 'width' => 'Length' ) ); // common attributes $cell_align = array( 'align' => 'Enum#left,center,right,justify,char', 'charoff' => 'Length', 'valign' => 'Enum#top,middle,bottom,baseline', ); $cell_t = array_merge( array( 'abbr' => 'Text', 'colspan' => 'Number', 'rowspan' => 'Number', // Apparently, as of HTML5 this attribute only applies // to 'th' elements. 'scope' => 'Enum#row,col,rowgroup,colgroup', ), $cell_align ); $this->addElement('td', false, 'Flow', 'Common', $cell_t); $this->addElement('th', false, 'Flow', 'Common', $cell_t); $this->addElement('tr', false, 'Required: td | th', 'Common', $cell_align); $cell_col = array_merge( array( 'span' => 'Number', 'width' => 'MultiLength', ), $cell_align ); $this->addElement('col', false, 'Empty', 'Common', $cell_col); $this->addElement('colgroup', false, 'Optional: col', 'Common', $cell_col); $this->addElement('tbody', false, 'Required: tr', 'Common', $cell_align); $this->addElement('thead', false, 'Required: tr', 'Common', $cell_align); $this->addElement('tfoot', false, 'Required: tr', 'Common', $cell_align); } } // vim: et sw=4 sts=4
Upload File
Create Folder