Esempio n. 1
0
 /**
  * Finds the Feedback model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Feedback the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Feedback::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Esempio n. 2
0
 public function actionSendMail()
 {
     $data = \Yii::$app->request->post('Feedback', false);
     $result = Email::sendFeedbackMail($data);
     if ($result) {
         /**
          * @var $feedback \backend\modules\feedback\models\db\Feedback
          */
         $feedback = Feedback::findOne(['id' => $data['id']]);
         $feedback->status = Feedback::PROCESSED;
         if ($feedback->save(false, ['status'])) {
             echo 1;
         } else {
             echo 0;
         }
     } else {
         echo 0;
     }
 }