/**
  * Lists all Articlecomment models.
  * @return mixed
  */
 public function actionIndex()
 {
     $list = '';
     $post = Yii::$app->request->post();
     if ($post['id']) {
         $mod = new Query();
         $comment = $mod->select(['a.id', 'a.parentId', 'a.articleId', 'a.content', 'a.createTime', 'b.username'])->from('articlecomment as a')->leftJoin('user as b', 'a.userId = b.id')->where(['commentId' => $post['id']])->orderBy(['createTime' => 'DESC', 'id' => 'DESC'])->createCommand()->queryAll();
         if ($comment) {
             foreach ($comment as $v) {
                 $content = '回复@' . Articlecomment::getCommentByParId($v['parentId']) . ':' . $v['content'];
                 $ahtml = html::a(html::tag("i", "", ["class" => "fa fa-thumbs-o-up"]) . html::tag("span", "回复"), ["/main/viewart", "id" => $v["articleId"], "parId" => $v['id']]);
                 $list .= '<div class="infos small-comment' . $post['id'] . '" style="border:1px solid;">
                         	<div class="media-body markdown-reply content-body">
                         		<p>' . $content . '</p>
                         		<span class="opts pull-right">
                         			<a class="author" >' . $v["username"] . '</a>
                         			•
                         			<addr title="' . $v["createTime"] . '">' . Html::tag("span", Yii::$app->formatter->asRelativeTime($v["createTime"])) . '</addr>
                         			' . $ahtml . '
                                 </span>
                         	</div>
                         </div>';
             }
         }
     }
     $result = array('success' => true, 'message' => $list);
     echo json_encode($result);
     die;
     return $this->renderAjax('index', ['success' => true, 'message' => '']);
 }
Example #2
0
<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;
use common\models\User;
use app\models\Articlecomment;
use yii\console\Markdown;
/* @var $this yii\web\View */
/* @var $model app\models\Articlecomment */
/* @var $form yii\widgets\ActiveForm */
//,'placeholder'=>'回复XXX'
if ($parId) {
    $username = Articlecomment::getCommentByParId($parId);
    $huifu = '回复' . $username;
} else {
    $huifu = '';
    $parId = 0;
    $username = '';
}
?>

<div class="articlecomment-form">

    <?php 
$form = ActiveForm::begin(['action' => ['/articlecomment/create']]);
?>
    
    <?php 
// Markdown::widget(['model' => $model, 'attribute' => 'body'])
?>