コード例 #1
0
 /**
  * @return string
  */
 public function actionUpdate()
 {
     if (Yii::$app->getRequest()->getIsAjax()) {
         Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
         $text = Yii::$app->getRequest()->post('text');
         $id = substr(Yii::$app->getRequest()->post('id'), 1);
         /* @var PostModels $post */
         $post = PostModels::findOne(['id' => $id]);
         if (!$post || Yii::$app->getUser()->can('updatePost', ['post' => $post])) {
             throw new NotFoundHttpException();
         }
         $model = new PostForm();
         $model->message = $text;
         if ($model->validate()) {
             $post->message = $text;
             $post->edited_at = time();
             $post->edited_by = Yii::$app->getUser()->getIdentity()->getId();
             $post->save();
         }
         return $post->displayMessage;
     }
     throw new NotFoundHttpException();
 }