コード例 #1
0
ファイル: Example.php プロジェクト: jhrzic/raptor-example
 public function renderContent($id, $buffer = null)
 {
     $result = parent::renderContent($id, $buffer);
     $purifier = new HTMLPurifier();
     $result = $purifier->purify($result);
     return $result;
 }
コード例 #2
0
ファイル: Example.php プロジェクト: jhrzic/raptor-example
 public function __construct($name)
 {
     parent::__construct($name);
     $this->setContentFile(RAPTOR_DATA_DIR . '/comments.json');
 }