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: List.php
<?php /** * XHTML 1.1 List Module, defines list-oriented elements. Core Module. */ class HTMLPurifier_HTMLModule_List extends HTMLPurifier_HTMLModule { /** * @type string */ public $name = 'List'; // According to the abstract schema, the List content set is a fully formed // one or more expr, but it invariably occurs in an optional declaration // so we're not going to do that subtlety. It might cause trouble // if a user defines "List" and expects that multiple lists are // allowed to be specified, but then again, that's not very intuitive. // Furthermore, the actual XML Schema may disagree. Regardless, // we don't have support for such nested expressions without using // the incredibly inefficient and draconic Custom ChildDef. /** * @type array */ public $content_sets = array('Flow' => 'List'); /** * @param HTMLPurifier_Config $config */ public function setup($config) { $ol = $this->addElement('ol', 'List', new HTMLPurifier_ChildDef_List(), 'Common'); $ul = $this->addElement('ul', 'List', new HTMLPurifier_ChildDef_List(), 'Common'); // XXX The wrap attribute is handled by MakeWellFormed. This is all // quite unsatisfactory, because we generated this // *specifically* for lists, and now a big chunk of the handling // is done properly by the List ChildDef. So actually, we just // want enough information to make autoclosing work properly, // and then hand off the tricky stuff to the ChildDef. $ol->wrap = 'li'; $ul->wrap = 'li'; $this->addElement('dl', 'List', 'Required: dt | dd', 'Common'); $this->addElement('li', false, 'Flow', 'Common'); $this->addElement('dd', false, 'Flow', 'Common'); $this->addElement('dt', false, 'Inline', 'Common'); } } // vim: et sw=4 sts=4
Upload File
Create Folder