blob: 0dae3b75901c286cd2b7f0a6910cc5d96d74752e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?php
Prado::using('System.3rdParty.SafeHtml.TSafeHtmlParser');
/**
* ${classname}
*
* ${description}
*
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
* @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $
* @package ${package}
*/
class TSafeHtml extends TControl
{
/**
* Renders body content.
* This method overrides parent implementation by removing
* malicious javascript code from the body content
* @param THtmlWriter writer
*/
protected function renderContents($writer)
{
$textWriter=new TTextWriter;
parent::renderContents(new THtmlWriter($textWriter));
$writer->write($this->parseSafeHtml($textWriter->flush()));
}
/**
* Use SafeHTML to remove malicous javascript from the HTML content.
* @param string HTML content
* @return string safer HTML content
*/
protected function parseSafeHtml($text)
{
$renderer = new TSafeHtmlParser();
return $renderer->parse($content);
}
}
?>
|