DaSourcerer/yii2-yiiboard

View on GitHub
components/Utils.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace app\modules\yboard\components;
 
use yii\helpers\HtmlPurifier;

class Utils {
    static public function cleanHtml($html) {
        
        return HtmlPurifier::process($html, [
            'Attr.EnableID' => false, 
        ]);
    } 
}