Пример #1
0
 /**
  * Creates a new Packages model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Packages();
     if (isset($_GET['name'])) {
         $model->name = $_GET['name'];
     }
     if (isset($_GET['owner'])) {
         $model->owner = $_GET['owner'];
     }
     if (isset($_GET['email'])) {
         $model->email = $_GET['email'];
     }
     if (isset($_GET['phone'])) {
         $model->phone = $_GET['phone'];
     }
     if (isset($_GET['money'])) {
         $model->money = $_GET['money'];
     }
     if (isset($_GET['message'])) {
         $model->info = $_GET['message'];
     }
     if (Yii::$app->request->isAjax && $model->load(Yii::$app->request->post())) {
         Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
         return \yii\widgets\ActiveForm::validate($model);
     }
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }