Prado\Web\UI\WebControls\TSafeHtml::parseSafeHtml PHP 메소드

parseSafeHtml() 보호된 메소드

Use HTMLPurifier to remove malicous content from HTML.
protected parseSafeHtml ( $text ) : string
리턴 string safer HTML content
    protected function parseSafeHtml($text)
    {
        $purifier = new \HTMLPurifier($this->getConfig());
        return $purifier->purify($text);
    }