Esempio n. 1
0
 public function actionCommentvote()
 {
     if (!Yii::$app->user->isGuest && Yii::$app->request->post('comment') != null && Yii::$app->request->post('vote') != null) {
         QueryModel::commentVote(Yii::$app->request->post('comment'));
     }
     return CommentRatesActiveRecord::getRates(Yii::$app->request->post('comment'));
 }
Esempio n. 2
0
 public static function commentVote($id)
 {
     $rate = new CommentRatesActiveRecord();
     $rate->userId = Yii::$app->user->identity->id;
     $rate->commentId = $id;
     $rate->rate = Yii::$app->request->post('vote');
     return $rate->save();
 }