Реализована форма обратной связи

This commit is contained in:
ErickSkrauch
2016-06-15 23:54:13 +03:00
parent 22296f246a
commit 912606e27f
7 changed files with 213 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<?php
namespace api\controllers;
use api\models\FeedbackForm;
use Yii;
use yii\helpers\ArrayHelper;
class FeedbackController extends Controller {
public function behaviors() {
return ArrayHelper::merge(parent::behaviors(), [
'authenticator' => [
'except' => ['index'],
],
]);
}
public function verbs() {
return [
'index' => ['POST'],
];
}
public function actionIndex() {
$model = new FeedbackForm();
$model->load(Yii::$app->request->post());
if (!$model->sendMessage()) {
return [
'success' => false,
'errors' => $this->normalizeModelErrors($model->getErrors()),
];
}
return [
'success' => true,
];
}
}