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: SafeEmbed.php
<?php /** * A "safe" embed module. See SafeObject. This is a proprietary element. */ class HTMLPurifier_HTMLModule_SafeEmbed extends HTMLPurifier_HTMLModule { /** * @type string */ public $name = 'SafeEmbed'; /** * @param HTMLPurifier_Config $config */ public function setup($config) { $max = $config->get('HTML.MaxImgLength'); $embed = $this->addElement( 'embed', 'Inline', 'Empty', 'Common', array( 'src*' => 'URI#embedded', 'type' => 'Enum#application/x-shockwave-flash', 'width' => 'Pixels#' . $max, 'height' => 'Pixels#' . $max, 'allowscriptaccess' => 'Enum#never', 'allownetworking' => 'Enum#internal', 'flashvars' => 'Text', 'wmode' => 'Enum#window,transparent,opaque', 'name' => 'ID', ) ); $embed->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeEmbed(); } } // vim: et sw=4 sts=4
Upload File
Create Folder