/** * Creates a new Pm model. * If creation is successful, the browser will be redirected to the 'view' page. * @return mixed */ public function actionCreate() { $model = new Pm(); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', 'id' => $model->id]); } else { return $this->render('create', ['model' => $model]); } }
public function actionView($id) { $model = new Pm(); # получаем юзера который принимает сообщения $acceptorUser = User::findOne($id); # читаем переписку с этим пользователем // $messages = Pm::find(['user_id' => $id, 'sender_id' => $id])->all(); $messages = Pm::getMessages($id); if (Yii::$app->user->id == $id) { throw new HttpException(400); } $model->user_id = $id; if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', 'id' => $id]); } // else // \Yii::$app->VarDumper->dump($model->getErrors()); return $this->render('view', ['model' => $model, 'pages' => $messages['pages'], 'messages' => $messages['models'], 'acceptorUser' => $acceptorUser]); }