コード例 #1
0
ファイル: comment.php プロジェクト: ErickLopez76/offiria
 /**
  *  Return HTML of all
  */
 public function showall()
 {
     $stream_id = JRequest::getVar('message_id');
     $html = StreamComment::getCommentsHTML($stream_id);
     header('Content-Type: text/html; charset=UTF-8');
     echo $html;
     exit;
 }