Class yii\helpers\BaseHtmlPurifier
| Inheritance | yii\helpers\BaseHtmlPurifier |
|---|---|
| Subclasses | yii\helpers\HtmlPurifier |
| Available since version | 2.0 |
| Source Code | https://github.com/yiisoft/yii2/blob/master/framework/helpers/BaseHtmlPurifier.php |
BaseHtmlPurifier provides concrete implementation for yii\helpers\HtmlPurifier.
Do not use BaseHtmlPurifier. Use yii\helpers\HtmlPurifier instead.
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 |
Method Details
Allow the extended HtmlPurifier class to set some default config options.
| protected static void configure ( $config ) | ||
| $config | \HTMLPurifier_Config | |
Passes markup through HTMLPurifier making it safe to output to end user.
| public static string process ( $content, $config = null ) | ||
| $content | string | The HTML content to purify |
| $config | array|Closure|null | The config to use for HtmlPurifier.
If not specified or
|
| return | string | The purified HTML content. |
|---|---|---|