helpers\HtmlPurifier

All Classes | Methods
Inheritance yii\helpers\HtmlPurifier ยป yii\helpers\BaseHtmlPurifier
Available since version 2.0
Source Code https://github.com/yiisoft/yii2/blob/master/framework/helpers/HtmlPurifier.php

HtmlPurifier provides an ability to clean up HTML from any harmful code.

Basic usage is the following:

echo HtmlPurifier::process($html);

If you want to configure it:

echo HtmlPurifier::process($html, [
    'Attr.EnableID' => true,
]);

For more details please refer to HTMLPurifier documentation.

Public Methods

Method Description Defined By
process() Passes markup through HTMLPurifier making it safe to output to end user yii\helpers\BaseHtmlPurifier

Protected Methods

Method Description Defined By
configure() Allow the extended HtmlPurifier class to set some default config options. yii\helpers\BaseHtmlPurifier
doc_Yii
2016-10-30 17:05:43
Comments
Leave a Comment

Please login to continue.