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: Iframe.php
<?php /** * XHTML 1.1 Iframe Module provides inline frames. * * @note This module is not considered safe unless an Iframe * whitelisting mechanism is specified. Currently, the only * such mechanism is %URL.SafeIframeRegexp */ class HTMLPurifier_HTMLModule_Iframe extends HTMLPurifier_HTMLModule { /** * @type string */ public $name = 'Iframe'; /** * @type bool */ public $safe = false; /** * @param HTMLPurifier_Config $config */ public function setup($config) { if ($config->get('HTML.SafeIframe')) { $this->safe = true; } $this->addElement( 'iframe', 'Inline', 'Flow', 'Common', array( 'src' => 'URI#embedded', 'width' => 'Length', 'height' => 'Length', 'name' => 'ID', 'scrolling' => 'Enum#yes,no,auto', 'frameborder' => 'Enum#0,1', 'longdesc' => 'URI', 'marginheight' => 'Pixels', 'marginwidth' => 'Pixels', ) ); } } // vim: et sw=4 sts=4
Upload File
Create Folder